Prevent being able to set bone's parent as itself

(cherry picked from commit d1bacb53fd)
This commit is contained in:
laws65 2021-09-21 22:06:03 +09:30 committed by Rémi Verschelde
parent aa679b2fe0
commit 8d0b878367
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 0 deletions

View File

@ -460,6 +460,7 @@ void Skeleton::set_bone_parent(int p_bone, int p_parent) {
ERR_FAIL_INDEX(p_bone, bones.size());
ERR_FAIL_COND(p_parent != -1 && (p_parent < 0));
ERR_FAIL_COND(p_bone == p_parent);
bones.write[p_bone].parent = p_parent;
process_order_dirty = true;