Class VisualOptions
Visual editor options data container.
Inheritance
System.Object
VisualOptions
Namespace: FlaxEditor.Options
Assembly: FlaxEngine.CSharp.dll
Syntax
[CustomEditor]
public sealed class VisualOptions : Object
Constructors
VisualOptions()
Declaration
public VisualOptions()
Properties
EnableMSAAForDebugDraw
Gets or sets a value indicating whether enable MSAA for DebugDraw primitives rendering. Helps with pixel aliasing but reduces performance.
Declaration
[EditorDisplay("Quality", "Enable MSAA For Debug Draw")]
[EditorOrder(500)]
[Tooltip("Determines whether enable MSAA for DebugDraw primitives rendering. Helps with pixel aliasing but reduces performance.")]
public bool EnableMSAAForDebugDraw { get; set; }
Property Value
System.Boolean
|
EnableParticlesPreview
Gets or sets a value indicating whether show looping particle effects in Editor viewport to simulate in-game look.
Declaration
[EditorDisplay("Preview", null)]
[EditorOrder(1000)]
public bool EnableParticlesPreview { get; set; }
Property Value
System.Boolean
|
GizmoSize
Gets or sets the transform gizmo size.
Declaration
[Limit(0.01F, 100F, 0.01F)]
[EditorDisplay("Gizmo", null)]
[EditorOrder(110)]
[Tooltip("The transform gizmo size.")]
public float GizmoSize { get; set; }
Property Value
System.Single
|
HighlightColor
Gets or sets the color used to highlight selected meshes and CSG surfaces.
Declaration
[EditorDisplay("Gizmo", null)]
[EditorOrder(200)]
[Tooltip("The color used to highlight selected meshes and CSG surfaces.")]
public Color HighlightColor { get; set; }
Property Value
Color
|
SelectionOutlineColor0
Gets or sets the first outline color.
Declaration
[EditorDisplay("Gizmo", null)]
[EditorOrder(100)]
[Tooltip("The first color of the selection outline gradient.")]
public Color SelectionOutlineColor0 { get; set; }
Property Value
Color
|
SelectionOutlineColor1
Gets or sets the second outline color.
Declaration
[EditorDisplay("Gizmo", null)]
[EditorOrder(101)]
[Tooltip("The second color of the selection outline gradient.")]
public Color SelectionOutlineColor1 { get; set; }
Property Value
Color
|
ShowSelectionOutline
Gets or sets the selection outline enable flag.
Declaration
[EditorDisplay("Gizmo", null)]
[EditorOrder(99)]
[Tooltip("If checked, the selection outline will be visible.")]
public bool ShowSelectionOutline { get; set; }
Property Value
System.Boolean
|
UISelectionOutlineSize
Gets or sets the selection outline size for UI controls.
Declaration
[EditorDisplay("Gizmo", "UI Control Outline Size")]
[EditorOrder(100)]
[Tooltip("The size of the selection outline for UI controls.")]
public float UISelectionOutlineSize { get; set; }
Property Value
System.Single
|