Browse Source

LOD: Fix broken clone. See #6661.

Mr.doob 10 years ago
parent
commit
9424f7e1f4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/objects/LOD.js

+ 1 - 1
src/objects/LOD.js

@@ -116,7 +116,7 @@ THREE.LOD.prototype.clone = function ( object ) {
 
 	if ( object === undefined ) object = new THREE.LOD();
 
-	THREE.Object3D.prototype.clone.call( this, object );
+	THREE.Object3D.prototype.clone.call( this, object, false );
 
 	for ( var i = 0, l = this.objects.length; i < l; i ++ ) {
 		var x = this.objects[ i ].object.clone();