0
私が間違いを犯していることがわかりました。あなたが私を助けることができれば非常にうれしいです。私は1つのトランジションをしたい。lua、コロナのSDKでonCompleteを使用する方法
local ball = display.newCircle(160,0,30)
local function move()
ball.x = display.contentWidth/2
ball.y = display.contentWidth-display.contentWidth-ball.contentWidth*2
transition.to(ball, {x=display.contentWidth/2, y=display.contentHeight*1.3, time=5000, onComplete=move2})
end
local function move2()
ball.x = display.contentWidth+ball.contentWidth/2
ball.y = 0-ball.contentWidth/2
transition.to(ball, {x=0-ball.contentWidth/2, y=display.contentHeight+ball.contentWidth/2, time = 5000})
--transition.to(ball,{x=160,y=240})
end
move()
@Idurniat関数move()の関数move()に移動したい場合はどうすればよいですか?move2()関数の上にありますか?私の問題について – QuestionEverything