|
@@ -14,8 +14,6 @@ function LOD() {
|
|
|
|
|
|
Object3D.call( this );
|
|
|
|
|
|
- this.currentLevel = 0;
|
|
|
-
|
|
|
this.type = 'LOD';
|
|
|
|
|
|
Object.defineProperties( this, {
|
|
@@ -35,6 +33,8 @@ LOD.prototype = Object.assign( Object.create( Object3D.prototype ), {
|
|
|
|
|
|
isLOD: true,
|
|
|
|
|
|
+ currentLevel: 0,
|
|
|
+
|
|
|
copy: function ( source ) {
|
|
|
|
|
|
Object3D.prototype.copy.call( this, source, false );
|