OnElementDimensionChange: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Remove obsolete Requirements section)
 
Line 27: Line 27:
)
)
</syntaxhighlight>
</syntaxhighlight>
==Requirements==
{{Requirements|1.5.8-9.20724|n/a|}}


{{See also/Server event|Element events}}
{{See also/Server event|Element events}}

Latest revision as of 17:24, 7 November 2024

This event is triggered when the dimension of an element is changed using setElementDimension.

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

This example prints the old and the new dimension of a vehicle

local vehicle = createVehicle (411, 0, 0, 3) -- create a vehicle
setTimer (setElementDimension, 1000, 1, vehicle, 10) -- set a new dimension to the vehicle after 1 second

-- add an event handler to onElementDimensionChange attached to the vehicle
addEventHandler ("onElementDimensionChange", vehicle,
	function (oldDimension, newDimension)
		 -- print the old and the new vehicle's dimension
		outputChatBox (inspect (source) .. "'s dimension changed from " .. oldDimension .. " to " .. newDimension)
	end
)

See Also

Element events


Event functions