(threeObject: any)
| 108 | } |
| 109 | |
| 110 | protected removeFromScene(threeObject: any) |
| 111 | { |
| 112 | let o3d: Object3D = threeObject instanceof Object3D ? threeObject : (<any>threeObject).object3d; |
| 113 | o3d.userData.owningEntity = null; |
| 114 | this.scene.remove(o3d); |
| 115 | } |
| 116 | } |
no test coverage detected