GetMass - ObjectReference

Member of: ObjectReference Script

Returns the mass of this object in Havok.

SyntaxEdit

float Function GetMass() native

ParametersEdit

None.

Return ValueEdit

This object's mass in Havok.

ExamplesEdit

; Is this thing very heavy?
if (AnvilProperty.GetMass() > 2000)
  Debug.Trace("Wow, the anvil is heavy!")
endIf

NotesEdit

  • The object has to be controlled by Havok ("ragdolling") or this function will always return 0. Use PushActorAway and wait few miliseconds or ForceAddRagdollToWorld before querying for the object's mass.

See AlsoEdit