mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 20:15:17 +00:00
80deea3b62
* Update 4 example mods * localize functions in water-level.lua
11 lines
No EOL
288 B
Lua
11 lines
No EOL
288 B
Lua
-- name: MoonJump
|
|
-- description: Hold the A button to Moonjump
|
|
|
|
local function mario_update(m)
|
|
if (m.controller.buttonDown & A_BUTTON) ~= 0 then --If the A button is held
|
|
m.vel.y = 25 --Set Y velocity to 25
|
|
end
|
|
end
|
|
|
|
-- hooks --
|
|
hook_event(HOOK_MARIO_UPDATE, mario_update) |