ソースを参照

Updated builds.

Mr.doob 4 年 前
コミット
2dc1238d7e
3 ファイル変更2 行追加2 行削除
  1. 1 1
      build/three.js
  2. 0 0
      build/three.min.js
  3. 1 1
      build/three.module.js

+ 1 - 1
build/three.js

@@ -24854,7 +24854,7 @@
 				var time = times[i];
 				var timeNext = times[i + 1]; // remove adjacent keyframes scheduled at the same time
 
-				if (time !== timeNext && (i !== 1 || time !== time[0])) {
+				if (time !== timeNext && (i !== 1 || time !== times[0])) {
 					if (!smoothInterpolation) {
 						// remove unnecessary keyframes same as their neighbors
 						var offset = i * stride,

ファイルの差分が大きいため隠しています
+ 0 - 0
build/three.min.js


+ 1 - 1
build/three.module.js

@@ -33126,7 +33126,7 @@ Object.assign( KeyframeTrack.prototype, {
 
 			// remove adjacent keyframes scheduled at the same time
 
-			if ( time !== timeNext && ( i !== 1 || time !== time[ 0 ] ) ) {
+			if ( time !== timeNext && ( i !== 1 || time !== times[ 0 ] ) ) {
 
 				if ( ! smoothInterpolation ) {
 

この差分においてかなりの量のファイルが変更されているため、一部のファイルを表示していません