如何對水龍頭功能中的電暈進行連續動作?我的意思是,當event.phase="began"
,直到它的挖掘行動重複,直到它結束。如何對水龍頭功能進行連續動作
我的代碼:
function upArrowtap(event)
if (event.phase == "began") then
if (ball.y > 45) then
transition.cancel(trans1)
transition.cancel(trans2)
--ball.y = ball.y-15
start()
end
end
end
upArrow:addEventListener("touch", upArrowtap)
希望你明白我的問題。
先生我用這 – 2011-04-23 13:24:47
功能upArrowtap(事件) 如果(event.phase == 「開始」),然後 如果(ball.y> 45),那麼 transition.cancel(反-1) transition.cancel(TRANS2 ) - ball.y = ball.y-15 的start() 結束 結束 結束 UPARROW:的addEventListener( 「觸摸」,upArrowtap) – 2011-04-23 13:25:25