Skip to content

Commit cb45c92

Browse files
committed
Updated builds.
1 parent d241b50 commit cb45c92

File tree

2 files changed

+20
-16
lines changed

2 files changed

+20
-16
lines changed

build/three.js

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11239,31 +11239,35 @@
1123911239

1124011240
var properties = {};
1124111241

11242-
this.get = function ( object ) {
11242+
return {
1124311243

11244-
var uuid = object.uuid;
11245-
var map = properties[ uuid ];
11244+
get: function ( object ) {
1124611245

11247-
if ( map === undefined ) {
11246+
var uuid = object.uuid;
11247+
var map = properties[ uuid ];
1124811248

11249-
map = {};
11250-
properties[ uuid ] = map;
11249+
if ( map === undefined ) {
1125111250

11252-
}
11251+
map = {};
11252+
properties[ uuid ] = map;
1125311253

11254-
return map;
11254+
}
1125511255

11256-
};
11256+
return map;
11257+
11258+
},
1125711259

11258-
this.delete = function ( object ) {
11260+
delete: function ( object ) {
1125911261

11260-
delete properties[ object.uuid ];
11262+
delete properties[ object.uuid ];
1126111263

11262-
};
11264+
},
1126311265

11264-
this.clear = function () {
11266+
clear: function () {
1126511267

11266-
properties = {};
11268+
properties = {};
11269+
11270+
}
1126711271

1126811272
};
1126911273

0 commit comments

Comments
 (0)