瀏覽代碼

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
 	 */

文件差異過大導致無法顯示
+ 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
  */

部分文件因文件數量過多而無法顯示