2
0
Эх сурвалжийг харах

Merge pull request #23632 from DualMatrix/floating_point

Fixed floating point issue in find() of animation.
Rémi Verschelde 6 жил өмнө
parent
commit
c3023e84c2

+ 1 - 1
scene/resources/animation.cpp

@@ -1469,7 +1469,7 @@ int Animation::_find(const Vector<K> &p_keys, float p_time) const {
 
 		middle = (low + high) / 2;
 
-		if (p_time == keys[middle].time) { //match
+		if (Math::abs(p_time - keys[middle].time) < CMP_EPSILON) { //match
 			return middle;
 		} else if (p_time < keys[middle].time)
 			high = middle - 1; //search low end of array