Merge pull request #93785 from TokageItLab/fix-bezier-init

Fix Bezier track init value on caching without RESET animation
This commit is contained in:
Rémi Verschelde
2024-07-01 10:07:37 +02:00

View File

@@ -691,7 +691,9 @@ bool AnimationMixer::_update_caches() {
track = track_value;
track_value->init_value = anim->track_get_key_value(i, 0);
bool is_value = track_src_type == Animation::TYPE_VALUE;
track_value->init_value = is_value ? anim->track_get_key_value(i, 0) : (anim->track_get_key_value(i, 0).operator Array())[0];
track_value->init_value.zero();
track_value->is_init = false;
@@ -703,7 +705,7 @@ bool AnimationMixer::_update_caches() {
if (has_reset_anim) {
int rt = reset_anim->find_track(path, track_src_type);
if (rt >= 0) {
if (track_src_type == Animation::TYPE_VALUE) {
if (is_value) {
if (reset_anim->track_get_key_count(rt) > 0) {
track_value->init_value = reset_anim->track_get_key_value(rt, 0);
}