From 5b5ea77a65cc705bda3d692204cb9e5044d26bfd Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 28 May 2025 04:55:27 +0200 Subject: [PATCH] Fix scene initialization order in app.js --- node/server/public/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/server/public/app.js b/node/server/public/app.js index 5bbf493..066175c 100644 --- a/node/server/public/app.js +++ b/node/server/public/app.js @@ -307,8 +307,8 @@ class Spirit { this.spiritMeshes.push(mesh); } }); - this.scene.add(this.grp); this._setupPicking(); + this.scene.add(this.grp); } update(dt) {