Skip to content

Commit 0109519

Browse files
authored
Remove unnecessary console logs (#98)
1 parent b8c8990 commit 0109519

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

src/renderer.ts

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,8 @@ export class URDFRenderer extends THREE.WebGLRenderer {
5757

5858
this._controls = new OrbitControls(this._camera, this.domElement);
5959
this._initControls();
60-
61-
this.printSceneLights();
62-
}
63-
printSceneLights() {
64-
console.log('Scene Lights:');
65-
this._scene.children.forEach(obj => {
66-
if (obj.type.includes('Light')) {
67-
console.log(obj);
68-
}
69-
});
7060
}
61+
7162
/**
7263
* Initializes the camera
7364
*/

0 commit comments

Comments
 (0)