在我的应用程序中,我希望一个对象在 Corona 的触摸开始事件中滑动和跳跃。虽然我成功地实现了滑动和触摸结束事件的跳转,但是在开始的事件阶段我不能做滑动。
我使用以下代码进行滑动和跳跃:
function touched( event )
if(event.phase == "ended") then
if(event.x - event.xStart > 70) then
sliding = true;
offGround = true;
else
boy:applyLinearImpulse(0, -0.44, boy.x, boy.y)
offGround = true;
end
end
end