summaryrefslogtreecommitdiff
path: root/src/lua_core.c
diff options
context:
space:
mode:
authorjussi2022-06-13 00:20:34 +0300
committerjussi2022-06-13 00:20:34 +0300
commit7b26e0aa68fb45612083b8e6b5c970564804803d (patch)
treedab279d16464c30dfb0ccf0b1ff2b1725e2af530 /src/lua_core.c
parent4cb361733ef4bce0e803501b750acdd81404778f (diff)
downloadreilua-enhanced-7b26e0aa68fb45612083b8e6b5c970564804803d.tar.gz
reilua-enhanced-7b26e0aa68fb45612083b8e6b5c970564804803d.tar.bz2
reilua-enhanced-7b26e0aa68fb45612083b8e6b5c970564804803d.zip
UnloadModelAnimations and IsModelAnimationValid.
Diffstat (limited to 'src/lua_core.c')
-rw-r--r--src/lua_core.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lua_core.c b/src/lua_core.c
index da0d865..d714024 100644
--- a/src/lua_core.c
+++ b/src/lua_core.c
@@ -1029,6 +1029,8 @@ void luaRegister() {
/* Animations. */
lua_register( L, "RL_LoadModelAnimations", lmodelsLoadModelAnimations );
lua_register( L, "RL_UpdateModelAnimation", lmodelsUpdateModelAnimation );
+ lua_register( L, "RL_UnloadModelAnimations", lmodelsUnloadModelAnimations );
+ lua_register( L, "RL_IsModelAnimationValid", lmodelsIsModelAnimationValid );
lua_register( L, "RL_GetModelAnimationBoneCount", lmodelsGetModelAnimationBoneCount );
lua_register( L, "RL_GetModelAnimationFrameCount", lmodelsGetModelAnimationFrameCount );
/* Collision. */