1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-04 19:21:46 +00:00

Removing round from int interpolation

This might break some animations that use int tracks in continuous mode, but it should provide a more uniform interpolation for things like sprite frames.
This commit is contained in:
punto-
2016-05-17 13:27:49 -03:00
parent 8cb2e1be1b
commit 433de90564

View File

@@ -3513,7 +3513,7 @@ void Variant::interpolate(const Variant& a, const Variant& b, float c,Variant &r
case INT:{
int va=a._data._int;
int vb=b._data._int;
r_dst=int((1.0-c) * va + vb * c + 0.5);
r_dst=int((1.0-c) * va + vb * c);
} return;
case REAL:{
real_t va=a._data._real;