Browse Source

Updated builds.

Mr.doob 9 years ago
parent
commit
cb45c921e7
2 changed files with 18 additions and 14 deletions
  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 = {};
+
+			}
 
 		};
 

File diff suppressed because it is too large
+ 0 - 0
build/three.min.js


Some files were not shown because too many files changed in this diff