我想知道是否有可能在过渡期间获得精灵x和y坐标。在lua中使用Corona SDK进行动画?如果是这样,我将如何获得它?
答案 0 :(得分:1)
只需在运行时使用enterFrame
侦听器进行检查,或使用不断触发的timer
。
计时器方法:
local function checkPos_withTimer()
print(yourObject.x)
print(yourObject.y)
end
timer.performWithDelay(1,withTimer,-1)
使用enterFrame检查:
local function checkin_frames()
print(yourObject.x)
print(yourObject.y)
end
Runtime:addEventListener("enterFrame",checkin_frames)
继续编码.........:)