event.yStart

Type Number
Event touch
Revision Release 2024.3703
Keywords touch, yStart

Overview

The y position of the touch from the "began" phase of the touch sequence.

Example

local function drawLine( event )
    if ( event.phase == "ended" ) then
        local line = display.newLine( event.xStart, event.yStart, event.x, event.y )
        line.strokeWidth = 5
    end
end

Runtime:addEventListener( "touch", drawLine )