mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2026-08-15 02:57:49 +04:00
11 lines
335 B
C#
11 lines
335 B
C#
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; }
|
|
}
|