OnClientElementDimensionChange: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
(Change note to 1.5.8)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client event}}
{{Client event}}
{{New feature/item|3.0159|1.5.9|20724|This event is triggered when the dimension of an [[element]] is changed using [[setElementDimension]].}}
{{New feature/item|3.0159|1.5.8|20724|This event is triggered when the dimension of an [[element]] is changed using [[setElementDimension]].}}


==Parameters==
==Parameters==

Revision as of 03:20, 24 June 2021

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

local vehicle = createVehicle ( 411, 0, 0, 3 )
setTimer ( setElementDimension, 1000, 1, vehicle, 10 )

addEventHandler ( "onClientElementDimensionChange", vehicle,
	function ( oldDimension, newDimension )
		outputChatBox ( inspect ( source ) .. "'s dimension changed from " .. oldDimension .. " to " .. newDimension )
	end
)

Requirements

Minimum server version n/a
Minimum client version 1.5.8-9.20724

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 client="1.5.8-9.20724" />

See Also

Client element events


Client event functions