ソースを参照

Updated builds.

Mr.doob 8 年 前
コミット
a54b56aaf5
3 ファイル変更48 行追加36 行削除
  1. 6 0
      build/three.js
  2. 36 36
      build/three.min.js
  3. 6 0
      build/three.modules.js

+ 6 - 0
build/three.js

@@ -38679,6 +38679,12 @@
 
 
 	}
 	}
 
 
+	Uniform.prototype.clone = function () {
+
+		return new Uniform( this.value.clone === undefined ? this.value : this.value.clone() );
+
+	};
+
 	/**
 	/**
 	 * @author benaadams / https://twitter.com/ben_a_adams
 	 * @author benaadams / https://twitter.com/ben_a_adams
 	 */
 	 */

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


+ 6 - 0
build/three.modules.js

@@ -38673,6 +38673,12 @@ function Uniform( value ) {
 
 
 }
 }
 
 
+Uniform.prototype.clone = function () {
+
+	return new Uniform( this.value.clone === undefined ? this.value : this.value.clone() );
+
+};
+
 /**
 /**
  * @author benaadams / https://twitter.com/ben_a_adams
  * @author benaadams / https://twitter.com/ben_a_adams
  */
  */

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