0
這裏絕望的樣子。我正在嘗試在Corona SDK中製作亞軍遊戲,並且我無法從跳躍動畫轉換到跑步(跳轉後返回)。在Corona SDK中限制觸摸事件
local function touched(event)
if(event.phase == "began")then
char.accel = monster.accel + 20
char:prepare("jumping")
char:play()
else
char:prepare("running")
char:play()
end
end
在這段代碼中,如果演奏者保持觸摸屏跳躍的動畫不斷重複地面上,有沒有辦法限制時間的感人事件?
還試圖通過另一種結構實現的動畫:
if(onGround) then
if(wasOnGround) then
else
monster:prepare("running")
monster:play()
end
else
monster:prepare("jumping")
monster:play()
end
但只有一些原因,顯示第一幀跳躍動畫。
任何幫助將非常感激! 在此先感謝。