Remove debug logs from scene initialization
Removed console.log statements for x, y, and z coordinates in the QuackscapeScene class. This cleanup reduces clutter in the console during scene initialization, leading to a cleaner and more professional debug output. No functional impact on scene loading.
This commit is contained in:
parent
635ab177dc
commit
06a00262a0
1 changed files with 0 additions and 4 deletions
|
@ -16,10 +16,6 @@ class QuackscapeScene extends HTMLElement {
|
||||||
this.y = this.getAttribute("y") | 0;
|
this.y = this.getAttribute("y") | 0;
|
||||||
this.z = this.getAttribute("z") | 0;
|
this.z = this.getAttribute("z") | 0;
|
||||||
|
|
||||||
console.log(this.x);
|
|
||||||
console.log(this.y);
|
|
||||||
console.log(this.z);
|
|
||||||
|
|
||||||
loadScene(this.scene, this.x, this.y, this.z, this);
|
loadScene(this.scene, this.x, this.y, this.z, this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue