Difference between revisions of "Body:isTouching"

m
m (0.11.0 -> 11.0)
Line 1: Line 1:
{{newin|[[0.11.0]]|110|type=function}}
+
{{newin|[[11.0]]|110|type=function}}
 
Gets whether the Body is touching the given other Body.
 
Gets whether the Body is touching the given other Body.
  

Revision as of 18:20, 14 April 2019

Available since LÖVE 11.0
This function is not supported in earlier versions.

Gets whether the Body is touching the given other Body.

O.png Using this in love.update may miss collisions, since World:update can begin and end a collision within a single call. The collision callbacks are recommended instead, when feasible.  


Function

Synopsis

touching = Body:isTouching( otherbody )

Arguments

Body otherbody
The other body to check.

Returns

boolean touching
True if this body is touching the other body, false otherwise.

See Also

Other Languages