Sandbox.Gizmo/SceneSettings Settings { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Settings property of the Gizmo class provides access to the scene settings used by the gizmo system. This property is static and publicly accessible, allowing you to configure and retrieve settings that affect how gizmos are rendered and interacted with in the scene.

Usage

To access the Settings property, you can directly reference it through the Gizmo class. This property is useful for adjusting global settings that influence the behavior and appearance of gizmos within your application.

Example

// Accessing the Gizmo Settings
var sceneSettings = Gizmo.Settings;

// Example: Adjusting a setting
sceneSettings.SomeSetting = newValue;