game.lua
speed={}
function Game.Rule:OnPlayerSignal(player,signal)
speed[player.index]=player.velocity.x*player.velocity.x+player.velocity.y*player.velocity.y
if player.velocity.z==0 and speed[player.index]<80000 then player.velocity={z=260}
end
end
ui.lua
function UI.Event:OnInp/ut(inp/uts)
if inp/uts[UI.KEY.SPACE]==true then
UI.Signal(1)
end
end
가속 제한 약 280으로 걸어놓은 오토버니합이고
가속 제한 없는 버전은 게임 루아만
speed={}
function Game.Rule:OnPlayerSignal(player,signal)
if player.velocity.z==0 then player.velocity={z=260}
end
end
으로 변경하면 댐
사용법은 스페이스바 꾹 누르고 있으면 그 때부터 오토버니합
갠적으로 가속제한 없으면 잼없기도 하고 스탠덥 느낌이 안난다는게 좀 별로