diff options
author | Nazarii <nazarii.yablonskyi.pp.2022@lpnu.ua> | 2024-08-30 19:36:54 +0300 |
---|---|---|
committer | Nazarii <nazarii.yablonskyi.pp.2022@lpnu.ua> | 2024-08-30 19:41:38 +0300 |
commit | 660e28f5cb39580f193b946d8e2019237832195f (patch) | |
tree | 6be40ed742dceb0b2f9fb16dde1171d769b49ef5 /scene/animation | |
parent | 3580ced21e12ad71d204b1c224988f514257d8a9 (diff) | |
download | redot-engine-660e28f5cb39580f193b946d8e2019237832195f.tar.gz |
Use static LocalVector for processed_hashes
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) { |