diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-14 14:24:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-14 14:24:16 +0100 |
commit | f60c81af11357dd8f27deee55be109558aadda65 (patch) | |
tree | 4b355d8b2a4eb98d4ff80dd8382e12c291dc4952 | |
parent | 77280218e43ef65a551ba7aa9088b3829864d8ff (diff) | |
parent | c5528af71c6fe4828aa6f3f972fba38572956328 (diff) |
Merge pull request #56784 from V-Sekai/expose-add-named-bind
-rw-r--r-- | doc/classes/Skin.xml | 7 | ||||
-rw-r--r-- | scene/resources/skin.cpp | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/doc/classes/Skin.xml b/doc/classes/Skin.xml index d24963a887..572558c3f5 100644 --- a/doc/classes/Skin.xml +++ b/doc/classes/Skin.xml @@ -14,6 +14,13 @@ <description> </description> </method> + <method name="add_named_bind"> + <return type="void" /> + <argument index="0" name="name" type="String" /> + <argument index="1" name="pose" type="Transform3D" /> + <description> + </description> + </method> <method name="clear_binds"> <return type="void" /> <description> diff --git a/scene/resources/skin.cpp b/scene/resources/skin.cpp index d371598cc0..54ed71999c 100644 --- a/scene/resources/skin.cpp +++ b/scene/resources/skin.cpp @@ -143,6 +143,7 @@ void Skin::_bind_methods() { ClassDB::bind_method(D_METHOD("get_bind_count"), &Skin::get_bind_count); ClassDB::bind_method(D_METHOD("add_bind", "bone", "pose"), &Skin::add_bind); + ClassDB::bind_method(D_METHOD("add_named_bind", "name", "pose"), &Skin::add_named_bind); ClassDB::bind_method(D_METHOD("set_bind_pose", "bind_index", "pose"), &Skin::set_bind_pose); ClassDB::bind_method(D_METHOD("get_bind_pose", "bind_index"), &Skin::get_bind_pose); |