bool IsRightMouseDown { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The IsRightMouseDown property is a static boolean property of the Gizmo class in the Sandbox namespace. It indicates whether the right mouse button is currently being pressed down.

Usage

Use the IsRightMouseDown property to check if the right mouse button is actively pressed. This can be useful for implementing custom interactions or controls within your application that depend on mouse input.

Example

// Example usage of IsRightMouseDown property
if (Gizmo.IsRightMouseDown)
{
    // Perform actions when the right mouse button is down
    // For example, rotate an object or open a context menu
}