BoneAttachments now position themselves instantly during bind.

(cherry picked from commit bc5ee6c98f)
This commit is contained in:
Saracen 2016-04-15 11:28:07 +01:00 committed by Rémi Verschelde
parent 5fac497aa2
commit 47c7b535d2
1 changed files with 1 additions and 0 deletions

View File

@ -80,6 +80,7 @@ void BoneAttachment::_check_bind() {
int idx = sk->find_bone(bone_name); int idx = sk->find_bone(bone_name);
if (idx!=-1) { if (idx!=-1) {
sk->bind_child_node_to_bone(idx,this);; sk->bind_child_node_to_bone(idx,this);;
set_transform(sk->get_bone_global_pose(idx));
bound=true; bound=true;
} }
} }