1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-16 18:01:40 +00:00

Extend bone override capabilities (#12388)

This commit is contained in:
Lars Müller 2023-12-20 21:21:53 +01:00 committed by GitHub
parent 61d0f613df
commit 0d61598d8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 375 additions and 80 deletions

View file

@ -130,6 +130,15 @@ private:
// get_bone_position(self, bone)
static int l_get_bone_position(lua_State *L);
// set_bone_override(self, bone)
static int l_set_bone_override(lua_State *L);
// get_bone_override(self, bone)
static int l_get_bone_override(lua_State *L);
// get_bone_override(self)
static int l_get_bone_overrides(lua_State *L);
// set_attach(self, parent, bone, position, rotation)
static int l_set_attach(lua_State *L);