GetObjectScale: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
(OOP syntax added)
Line 7: Line 7:
float getObjectScale ( object theObject )
float getObjectScale ( object theObject )
</syntaxhighlight>
</syntaxhighlight>
 
{{OOP||[[object]]:getScale|scale|setObjectScale}}
===Required Arguments===
===Required Arguments===
*'''theObject''': The object you wish to return the scale of.
*'''theObject''': The object you wish to return the scale of.

Revision as of 06:33, 12 July 2014

This function returns the visible size of an object.

Syntax

float getObjectScale ( object theObject )

OOP Syntax Help! I don't understand this!

Method: object:getScale(...)
Variable: .scale
Counterpart: setObjectScale


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 adds a command get_scale which create object and prints out a scale of the object.

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

See Also