sm64coopdx/docs/lua/examples/Moonjump.lua
2022-03-18 21:30:53 -07:00

10 lines
No EOL
293 B
Lua

-- name: MoonJump
-- description: Hold the A button to Moonjump
function mario_update(m)
if (m.controller.buttonDown & A_BUTTON) ~= 0 then --If the A button is pressed
m.vel.y = 25 --Set Y velocity to 25
end
end
-- hooks --
hook_event(HOOK_MARIO_UPDATE, mario_update)