我一直被困在这里,但我找不到任何帮助。你能用一些例子来展示解决方案吗?感谢。
答案 0 :(得分:0)
这是一个简单的例子。不确定您希望如何旋转和转换,但它具有您需要的基础知识。
local star = display.newLine( 200, 90, 227, 165 )
star.anchorX = 0.2257
star.anchorY = 0.5
star.x = display.contentCenterX
star.y = display.contentCenterY
local function listener1( )
-- body
end
local function rotate(event)
timer.performWithDelay(1000, function() star.rotation = star.rotation + 6; end, 0)
transition.to( star, { time=15000, alpha=1, x=(event.x), y=(event.y), onComplete=listener1 } )
end
Runtime:addEventListener("touch", rotate)