我刚刚开始使用一个基本的 Corona SDK 项目,但遇到了一些障碍。我已经很好地制作了对象和菜单,甚至为游戏添加了重力,但我想知道是否有一种简单的方法可以在用户滑动屏幕时让对象移动,并且对象会朝那个大致方向移动。
任何帮助将不胜感激,我的对象的代码在下面
-- make a Chameleon
local Chameleon = display.newImageRect( "Chameleon.png", 70, 70 )
Chameleon.x= 50
Chameleon.y= 440
physics.addBody(Chameleon, "dynamic", {density=.1, bounce=.1, friction=.2, radius=12})
function touchScreen(event)
-- print("touch")
end
Runtime:addEventListener("touch", touchScreen)