OnElementDimensionChange: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server event}} | {{Server event}} | ||
{{ | {{Added feature/item|3.0159|1.5.9|1.5.8|20724|This event is triggered when the dimension of an [[element]] is changed using [[setElementDimension]].}} | ||
==Parameters== | ==Parameters== | ||
Line 7: | Line 7: | ||
int oldDimension, int newDimension | int oldDimension, int newDimension | ||
</syntaxhighlight> | </syntaxhighlight> | ||
*'''oldDimension''': | *'''oldDimension''': An [[int]] representing the dimension the [[element]] was in before. | ||
*'''newDimension''': | *'''newDimension''': An [[int]] representing the dimension the [[element]] is in now. | ||
==Source== | ==Source== | ||
Line 15: | Line 15: | ||
==Example== | ==Example== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
local vehicle = createVehicle ( 411, 0, 0, 3 ) | local vehicle = createVehicle (411, 0, 0, 3) | ||
setTimer ( setElementDimension, 1000, 1, vehicle, 10 ) | setTimer (setElementDimension, 1000, 1, vehicle, 10) | ||
addEventHandler ( "onElementDimensionChange", vehicle, | addEventHandler ("onElementDimensionChange", vehicle, | ||
function ( oldDimension, newDimension ) | function (oldDimension, newDimension) | ||
outputChatBox ( inspect ( source ) .. "'s dimension changed from " .. oldDimension .. " to " .. newDimension ) | outputChatBox (inspect (source) .. "'s dimension changed from " .. oldDimension .. " to " .. newDimension) | ||
end | end | ||
) | ) |
Revision as of 11:30, 20 September 2021
20724
Parameters
int oldDimension, int newDimension
- oldDimension: An int representing the dimension the element was in before.
- newDimension: An int representing the dimension the element is in now.
Source
The source of this event is the element that changed its dimension.
Example
local vehicle = createVehicle (411, 0, 0, 3) setTimer (setElementDimension, 1000, 1, vehicle, 10) addEventHandler ("onElementDimensionChange", vehicle, function (oldDimension, newDimension) outputChatBox (inspect (source) .. "'s dimension changed from " .. oldDimension .. " to " .. newDimension) end )
Requirements
Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version server="1.5.8-9.20724" />
See Also
Element events
- onElementClicked
- onElementColShapeHit
- onElementColShapeLeave
- onElementDataChange
- onElementDestroy
- onElementDimensionChange
- onElementInteriorChange
- onElementModelChange
- onElementStartSync
- onElementStopSync
Event functions
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled