GetObjectScale: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 25: Line 25:
)
)
</syntaxhighlight>
</syntaxhighlight>
</section>


==See Also==
==See Also==
{{Object_functions}}
{{Object_functions}}
[[Category:Needs_Example]]
[[Category:Needs_Example]]

Revision as of 20:21, 7 March 2012

This function returns the visible size of an object.

Syntax

float getObjectScale ( object theObject )

Required Arguments

  • theObject: The object you wish to return the scale of.

Returns

Returns a float indicating the scale of the object, if successful. false otherwise.

Example

Click to collapse [-]
Client

This example creates an object and output in chat scale.

addCommandHandler( 'get_scale',
	function( )
		local uObject = createObject( 1337, getElementPosition( localPlayer ) )
		outputChatBox( string.format( 'Object scale is %s !', getObjectScale( uObject ) ) )
	end
)

See Also