From 7c4bc0a37813e0503d89b8b13bdb938413d70590 Mon Sep 17 00:00:00 2001 From: "Silc Lizard (Tokage) Renew" <61938263+TokageItLab@users.noreply.github.com> Date: Thu, 25 Jul 2024 16:21:59 +0900 Subject: [PATCH] Fix processed_hashes type to Animation::TypeHash from int --- scene/animation/animation_mixer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/animation/animation_mixer.cpp b/scene/animation/animation_mixer.cpp index e011dec79bf..20dd12f8c3c 100644 --- a/scene/animation/animation_mixer.cpp +++ b/scene/animation/animation_mixer.cpp @@ -1081,7 +1081,7 @@ void AnimationMixer::_blend_calc_total_weight() { Ref a = ai.animation_data.animation; real_t weight = ai.playback_info.weight; Vector track_weights = ai.playback_info.track_weights; - Vector processed_hashes; + Vector processed_hashes; for (int i = 0; i < a->get_track_count(); i++) { if (!a->track_is_enabled(i)) { continue;