summaryrefslogtreecommitdiff
path: root/scene/animation
diff options
context:
space:
mode:
authorSilc Renew <tokage.it.lab@gmail.com>2023-01-27 17:44:25 +0900
committerSilc Renew <tokage.it.lab@gmail.com>2023-01-27 17:44:25 +0900
commitd33fdfcdad8351b40bca1ac21679e71b765567c3 (patch)
tree582f5b3eedbd3fdf2b9a387f65eccfbfc2f05605 /scene/animation
parentd1e5903c67956707948b1de370b807e3aad395b7 (diff)
Fix AnimationTree MethodTrack discards all process
Diffstat (limited to 'scene/animation')
-rw-r--r--scene/animation/animation_tree.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_tree.cpp b/scene/animation/animation_tree.cpp
index a2a1a0aaef..05b6c72cbd 100644
--- a/scene/animation/animation_tree.cpp
+++ b/scene/animation/animation_tree.cpp
@@ -1411,7 +1411,7 @@ void AnimationTree::_process_graph(double p_delta) {
case Animation::TYPE_METHOD: {
#ifdef TOOLS_ENABLED
if (!can_call) {
- return;
+ continue;
}
#endif // TOOLS_ENABLED
TrackCacheMethod *t = static_cast<TrackCacheMethod *>(track);