Merge pull request #72166 from TokageItLab/method-break

Fix AnimationTree MethodTrack discards all process
This commit is contained in:
Rémi Verschelde 2023-01-27 10:29:48 +01:00
commit 1a3b537bc7
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -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);