Skip to content

Latest commit

 

History

History
executable file
·
14 lines (10 loc) · 220 Bytes

File metadata and controls

executable file
·
14 lines (10 loc) · 220 Bytes

Gesture

w,h = System:screenSize();--获取屏幕尺寸

gesture = Gesture(
    function( event )
        print(event.id, event.pointer, event.action, event.x, event.y)
	end
);

window:addGesture(gesture);