Files

11 lines
335 B
C#
Raw Permalink Normal View History

2026-06-05 20:47:57 +03:00
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; }
}