我正在使用 corona sdk 使用倾斜移动飞机。但我的游戏是横向的。我不确定问题出在我的代码中。动作似乎很奇怪。我理解问题是因为游戏是横向的。有人帮我解决问题。这是我使用的代码
function onTilt(event)
motionx = 20*event.xGravity
motiony = 20*event.yGravity
plane.x=plane.x+motionx
plane.y=plane.y-motiony
end
Runtime:addEventListener("accelerometer", onTilt)