Difference between revisions of "Body:isDynamic"

m
(oldin notice.)
Line 1: Line 1:
 +
{{oldin|[[0.8.0]]|080|type=method}}
 
Get the dynamic status of the body.
 
Get the dynamic status of the body.
  

Revision as of 18:55, 16 May 2012

Removed in LÖVE 0.8.0
This method is not supported in that and later versions.

Get the dynamic 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:isDynamic( )

Arguments

None.

Returns

boolean status
The dynamic status of the body.

See Also


Other Languages