diff options
Diffstat (limited to 'scene/animation')
-rw-r--r-- | scene/animation/animation_mixer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scene/animation/animation_mixer.cpp b/scene/animation/animation_mixer.cpp index 41dbe69381..0ab4dbe470 100644 --- a/scene/animation/animation_mixer.cpp +++ b/scene/animation/animation_mixer.cpp @@ -1085,7 +1085,8 @@ void AnimationMixer::_blend_calc_total_weight() { real_t weight = ai.playback_info.weight; const real_t *track_weights_ptr = ai.playback_info.track_weights.ptr(); int track_weights_count = ai.playback_info.track_weights.size(); - Vector<Animation::TypeHash> processed_hashes; + static LocalVector<Animation::TypeHash> processed_hashes; + processed_hashes.clear(); const Vector<Animation::Track *> tracks = a->get_tracks(); for (const Animation::Track *animation_track : tracks) { if (!animation_track->enabled) { |