Explorar o código

check for >= 180 instead of > 179

Lewy Blue %!s(int64=7) %!d(string=hai) anos
pai
achega
deadeabccd
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      examples/js/loaders/FBXLoader.js

+ 1 - 1
examples/js/loaders/FBXLoader.js

@@ -2692,7 +2692,7 @@
 			var initialValue = curve.values[ i - 1 ];
 			var valuesSpan = curve.values[ i ] - initialValue;
 
-			if ( valuesSpan > 179 ) {
+			if ( valuesSpan >= 180 ) {
 
 				var numSubIntervals = Math.abs( valuesSpan / 180 );