1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-18 14:21:41 +00:00

Merge pull request #55572 from aaronfranke/ci-double

This commit is contained in:
Rémi Verschelde
2021-12-10 10:02:38 +01:00
committed by GitHub
16 changed files with 107 additions and 109 deletions

View File

@@ -1239,8 +1239,7 @@ void AnimationTree::_process_graph(real_t p_delta) {
continue;
}
t->value = Math::lerp(t->value, value, blend);
t->value = Math::lerp(t->value, value, (float)blend);
#endif // _3D_DISABLED
} break;
case Animation::TYPE_VALUE: {