Difference between revisions of "Shape:setSensor"

m (Marked method as obsolete.)
m
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 +
{{oldin|[[0.8.0]]|080|type=function}}
 
Sets whether this shape should act as a sensor.
 
Sets whether this shape should act as a sensor.
 
Set the shape as a sensor if you want to be notified when collision between shapes occur, but don't want a physical response (for instance, maybe you want enemies to appear when the player "touches" a certain point).
 
Set the shape as a sensor if you want to be notified when collision between shapes occur, but don't want a physical response (for instance, maybe you want enemies to appear when the player "touches" a certain point).
 
== Function ==
 
== Function ==
{{oldin|[[0.8.0]]|080|type=method}}
 
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">

Latest revision as of 17:52, 29 May 2013

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

Sets whether this shape should act as a sensor. Set the shape as a sensor if you want to be notified when collision between shapes occur, but don't want a physical response (for instance, maybe you want enemies to appear when the player "touches" a certain point).

Function

Synopsis

Shape:setSensor( sensor )

Arguments

boolean sensor
True for sensor, false otherwise.

Returns

Nothing.

See Also


Other Languages