From 5a5656109e4ec901af55d23ac54096a85e87d104 Mon Sep 17 00:00:00 2001 From: Thomas Fuhrmann Date: Wed, 30 Apr 2025 13:23:24 +0200 Subject: [PATCH] Explode all layers --- app/three/SceneView.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/three/SceneView.ts b/app/three/SceneView.ts index 66d5415..9f8ab8f 100644 --- a/app/three/SceneView.ts +++ b/app/three/SceneView.ts @@ -400,7 +400,7 @@ export class SceneView extends EventTarget { this._resetClippingBox(); } - for (let i = 1; i < this._model.children.length; i++) { + for (let i = 0; i < this._model.children.length; i++) { const mesh = this._model.children[i]; if (explode) {