From c7232a8a83c5bfb1ea69a4b35acf7a799e69204e Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 2 Apr 2026 22:13:00 +0200 Subject: [PATCH] Adjust grid helper rotations in viewport-host.ts --- src/viewport-three/viewport-host.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/viewport-three/viewport-host.ts b/src/viewport-three/viewport-host.ts index ab253708..50a6fbf9 100644 --- a/src/viewport-three/viewport-host.ts +++ b/src/viewport-three/viewport-host.ts @@ -185,6 +185,8 @@ export class ViewportHost { const axesHelper = new AxesHelper(2); + this.gridHelpers.xy.rotation.x = Math.PI * 0.5; + this.gridHelpers.yz.rotation.z = Math.PI * 0.5; this.gridHelpers.xz.visible = true; this.gridHelpers.xy.visible = false; this.gridHelpers.yz.visible = false;