Description
The GizmoInstance
property of the SceneRenderingWidget
class provides access to the current instance of a gizmo being used within the scene rendering context. Gizmos are visual tools that assist in the manipulation and visualization of objects within a scene, such as translation, rotation, and scaling handles.
Usage
To use the GizmoInstance
property, you must have an instance of the SceneRenderingWidget
class. You can then access the property to retrieve or manipulate the current gizmo instance associated with the scene rendering widget.
Example
// Assuming you have an instance of SceneRenderingWidget
SceneRenderingWidget renderingWidget = new SceneRenderingWidget();
// Access the GizmoInstance property
Gizmo.Instance currentGizmo = renderingWidget.GizmoInstance;
// Example: Check if a gizmo is currently active
if (currentGizmo != null)
{
// Perform operations with the active gizmo
// For example, you might want to modify its properties or check its state
}