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:
Kumi 2024-03-11 19:50:56 +01:00
parent 635ab177dc
commit 06a00262a0
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -16,10 +16,6 @@ class QuackscapeScene extends HTMLElement {
this.y = this.getAttribute("y") | 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);
}
}