summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjussi2023-05-01 22:38:59 +0300
committerjussi2023-05-01 22:38:59 +0300
commitcf92c94097e1e8ce61a6bc73671be4ee5e229571 (patch)
treec0f544aa91d2589b8b1e2808503cb82a226ed22e /src
parentf7a42189f054c8d81c24c8ea395d0818bb524c61 (diff)
downloadreilua-enhanced-cf92c94097e1e8ce61a6bc73671be4ee5e229571.tar.gz
reilua-enhanced-cf92c94097e1e8ce61a6bc73671be4ee5e229571.tar.bz2
reilua-enhanced-cf92c94097e1e8ce61a6bc73671be4ee5e229571.zip
Vector3RotateByAxisAngle was not connected.
Diffstat (limited to 'src')
-rw-r--r--src/lua_core.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lua_core.c b/src/lua_core.c
index af9b6eb..bc2c7e3 100644
--- a/src/lua_core.c
+++ b/src/lua_core.c
@@ -1221,6 +1221,7 @@ void luaRegister() {
assingGlobalFunction( "Vector3OrthoNormalize", lmathVector3OrthoNormalize );
assingGlobalFunction( "Vector3Transform", lmathVector3Transform );
assingGlobalFunction( "Vector3RotateByQuaternion", lmathVector3RotateByQuaternion );
+ assingGlobalFunction( "Vector3RotateByAxisAngle", lmathVector3RotateByAxisAngle );
assingGlobalFunction( "Vector3Lerp", lmathVector3Lerp );
assingGlobalFunction( "Vector3Reflect", lmathVector3Reflect );
assingGlobalFunction( "Vector3Min", lmathVector3Min );