diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-22 17:36:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-22 17:36:33 +0200 |
commit | 43ff5dd890fa647ac3e91a30a2a2198cb40db34a (patch) | |
tree | dc4e9f99571263cc04f250f825854a6782e4a266 /scene/animation/animation_player.cpp | |
parent | dabc9823934ca13ad02cd13fcb544aaab955da25 (diff) | |
parent | 8893b2bdb48ccac447db15a5b33f3c06329c6a8a (diff) |
Merge pull request #64642 from aaronfranke/mesh-cleanup
Diffstat (limited to 'scene/animation/animation_player.cpp')
-rw-r--r-- | scene/animation/animation_player.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp index 09ec086564..1a7bf4c302 100644 --- a/scene/animation/animation_player.cpp +++ b/scene/animation/animation_player.cpp @@ -323,10 +323,8 @@ void AnimationPlayer::_ensure_node_caches(AnimationData *p_anim, Node *p_root_ov #endif // _3D_DISABLED - { - if (!child->is_connected("tree_exiting", callable_mp(this, &AnimationPlayer::_node_removed))) { - child->connect("tree_exiting", callable_mp(this, &AnimationPlayer::_node_removed).bind(child), CONNECT_ONESHOT); - } + if (!child->is_connected("tree_exiting", callable_mp(this, &AnimationPlayer::_node_removed))) { + child->connect("tree_exiting", callable_mp(this, &AnimationPlayer::_node_removed).bind(child), CONNECT_ONESHOT); } TrackNodeCacheKey key; @@ -375,7 +373,7 @@ void AnimationPlayer::_ensure_node_caches(AnimationData *p_anim, Node *p_root_ov node_cache->init_rot = rest.basis.get_rotation_quaternion(); node_cache->init_scale = rest.basis.get_scale(); } else { - // no property, just use spatialnode + // Not a skeleton, the node can be accessed with the node_3d member. node_cache->skeleton = nullptr; } } |