SetObjectMass

From Multi Theft Auto: Wiki
Revision as of 23:08, 4 October 2014 by Strix (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function sets the mass of a specified object. Changing the mass leads to a different movement behavior for especially dynamic objects.

Syntax

bool setObjectMass ( object theObject, float mass )

OOP Syntax Help! I don't understand this!

Method: object:setMass(...)
Variable: .mass
Counterpart: getObjectMass


Required Arguments

  • theObject: the object whose mass will be set.
  • mass: the new mass.

Returns

  • true if the new mass value has been.
  • false otherwise.

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(1225,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