瀏覽代碼

Updated builds.

Mr.doob 9 年之前
父節點
當前提交
cb45c921e7
共有 2 個文件被更改,包括 18 次插入14 次删除
  1. 18 14
      build/three.js
  2. 0 0
      build/three.min.js

+ 18 - 14
build/three.js

@@ -11239,31 +11239,35 @@
 
 		var properties = {};
 
-		this.get = function ( object ) {
+		return {
 
-			var uuid = object.uuid;
-			var map = properties[ uuid ];
+			get: function ( object ) {
 
-			if ( map === undefined ) {
+				var uuid = object.uuid;
+				var map = properties[ uuid ];
 
-				map = {};
-				properties[ uuid ] = map;
+				if ( map === undefined ) {
 
-			}
+					map = {};
+					properties[ uuid ] = map;
 
-			return map;
+				}
 
-		};
+				return map;
+
+			},
 
-		this.delete = function ( object ) {
+			delete: function ( object ) {
 
-			delete properties[ object.uuid ];
+				delete properties[ object.uuid ];
 
-		};
+			},
 
-		this.clear = function () {
+			clear: function () {
 
-			properties = {};
+				properties = {};
+
+			}
 
 		};
 

文件差異過大導致無法顯示
+ 0 - 0
build/three.min.js


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