event.y

Type Number
Event collision
Revision 2017.3060
Keywords collision, y
See also event.x

Overview

The y position where the collision event occurred. Note that the reported collision position can be influenced by physics.getAverageCollisionPositions() and physics.setReportCollisionsInContentCoordinates().

Gotchas

Example

local function onCollision( event )
    if ( event.phase == "began" ) then
        print( "began: " .. event.object1 .. " & " .. event.object2 )
        print( "position: " .. event.x .. "," .. event.y )
    elseif ( event.phase == "ended" ) then
        print( "ended: " .. event.object1 .. " & " .. event.object2 )
        print( "position: " .. event.x .. "," .. event.y )
    end
end