From 06a00262a09050c7b4c80f8a48df3aee5d176b7b Mon Sep 17 00:00:00 2001 From: Kumi Date: Mon, 11 Mar 2024 19:50:56 +0100 Subject: [PATCH] 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. --- assets/js/scene.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/assets/js/scene.js b/assets/js/scene.js index f0cc979..c07faa1 100644 --- a/assets/js/scene.js +++ b/assets/js/scene.js @@ -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); } }