浏览代码

Updated builds.

Mr.doob 4 年之前
父节点
当前提交
e34efe2d84
共有 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

@@ -25959,7 +25959,7 @@
 			var trackType = track.constructor;
 			var json; // derived classes can define a static toJSON method
 
-			if (trackType.toJSON !== undefined) {
+			if (trackType.toJSON !== this.toJSON) {
 				json = trackType.toJSON(track);
 			} else {
 				// by default, we assume the data can be serialized as-is

文件差异内容过多而无法显示
+ 0 - 0
build/three.min.js


+ 1 - 1
build/three.module.js

@@ -32999,7 +32999,7 @@ class KeyframeTrack {
 		let json;
 
 		// derived classes can define a static toJSON method
-		if ( trackType.toJSON !== undefined ) {
+		if ( trackType.toJSON !== this.toJSON ) {
 
 			json = trackType.toJSON( track );
 

部分文件因为文件数量过多而无法显示