This commit is contained in:
bird_egop
2026-06-05 20:47:57 +03:00
parent 195e6d71bd
commit 614787789e
11 changed files with 446 additions and 42 deletions
@@ -0,0 +1,10 @@
namespace NResUI.Rendering.Viewport;
public sealed class ViewportDebugSettings
{
public bool ShowOriginAxes { get; set; } = true;
public bool ShowPieceOrigins { get; set; } = true;
public bool ShowSelectedBounds { get; set; } = true;
public bool ShowSceneBounds { get; set; }
public bool Wireframe { get; set; }
}