sm64coopdx/docs/lua/examples/custom-animations-lua/main.lua
2023-05-14 19:16:03 -07:00

10 lines
350 B
Lua

-- name: Custom animation (LUA)
-- description: No running allowed.\nReplace the running animation by Mario walking.
local function mario_update(m)
if m.marioObj.header.gfx.animInfo.animID == MARIO_ANIM_RUNNING then
smlua_anim_util_set_animation(m.marioObj, "mario_anim_walking")
end
end
hook_event(HOOK_MARIO_UPDATE, mario_update)