Difference between revisions of "Body:isStatic"

m (1 revision: Imported docs from potato.)
Line 1: Line 1:
  
 +
Get the static status of the body.
 +
 +
A static body has no mass and a constant position. It will not react to collisions. Often used for walls.
 +
 +
 +
A dynamic body has mass and can move. It will react to collisions when the world is updated.
  
 
== Function ==
 
== Function ==
Line 13: Line 19:
 
* [[parent::Body]]
 
* [[parent::Body]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=}}
+
{{#set:Description=Get the static status of the body.
 +
}}

Revision as of 16:17, 14 February 2010

Get the static status of the body.

A static body has no mass and a constant position. It will not react to collisions. Often used for walls.


A dynamic body has mass and can move. It will react to collisions when the world is updated.

Function

Synopsis

status = Body:isStatic( )

Arguments

None.

Returns

boolean status
The static status of the body.

See Also