Browse Source

CSM.remove() removes the targets, too (#24658)

Yoshiki Ohshima 2 năm trước cách đây
mục cha
commit
4de773d68a
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      examples/jsm/csm/CSM.js

+ 1 - 0
examples/jsm/csm/CSM.js

@@ -343,6 +343,7 @@ export class CSM {
 
 		for ( let i = 0; i < this.lights.length; i ++ ) {
 
+			this.parent.remove( this.lights[ i ].target );
 			this.parent.remove( this.lights[ i ] );
 
 		}