From 91d1a60343c020ea29636f407214b21cbcca9c8d Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Sun, 15 Feb 2026 10:27:10 -0700 Subject: [PATCH] feat: Set initial camera to an isometric view Co-authored-by: aider (gemini/gemini-2.5-pro) --- src/ViewportWidget.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ViewportWidget.cpp b/src/ViewportWidget.cpp index 8e457f4..6029fa6 100644 --- a/src/ViewportWidget.cpp +++ b/src/ViewportWidget.cpp @@ -31,9 +31,9 @@ ViewportWidget::ViewportWidget(QWidget *parent) setMouseTracking(true); setFocusPolicy(Qt::StrongFocus); - // Set initial view to Top (XY plane) and show grid - m_xRot = 90 * 16; - m_yRot = 0; + // Set initial view to an isometric angle on the XY plane and show grid + m_xRot = 30 * 16; + m_yRot = -45 * 16; m_zoom = -20.0f; m_panX = 0.0f; m_panY = 0.0f;