1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Fix animation blending

This commit is contained in:
Lars Mueller 2025-01-26 17:38:50 +01:00
parent a5180fbb28
commit c7c99296cb
6 changed files with 42 additions and 53 deletions

View file

@ -231,7 +231,7 @@ public:
static core::quaternion interpolateValue(core::quaternion from, core::quaternion to, f32 time) {
core::quaternion result;
result.slerp(from, to, time, 0.001f);
result.slerp(from, to, time);
return result;
}