GetObjectMass: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{client_function}} | {{client_function}} | ||
{{New feature/item|3. | {{New feature/item|3.0132|1.3.2|5170| | ||
This function returns the mass of a specified object. | This function returns the mass of a specified object. | ||
}} | }} |
Revision as of 10:17, 8 May 2013
This function returns the mass of a specified object.
Syntax
float getObjectMass ( object theObject )
Required Arguments
- theObject: The object whose mass you want to get.
Returns
Returns a float representing the mass of the object, false if invalid arguments were passed.
Example
This script basically creates an object then get's the mass and set's its mass 300 more than it's original mass, then tell the client the old and new mass of the object.
local object = createObject(1337,0,0,3) local oldMass = getObjectMass(object) local newMass = oldMass+300.0 setObjectMass(object,newMass) outputChatBox("Object Old Mass: "..oldMass..", New Mass: "..newMass)
See Also
- createObject
- getObjectScale
- moveObject
- setObjectScale
- stopObject
- getObjectMass
- getObjectProperty
- setObjectMass
- setObjectProperty