bool HasGimzoHandle { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The HasGimzoHandle property of a GameObject is a boolean value that indicates whether the GameObject has a gizmo handle associated with it. This property is marked as obsolete, and it is recommended to use HasGizmoHandle instead.

Usage

To check if a GameObject has a gizmo handle, use the HasGizmoHandle property instead of HasGimzoHandle as the latter is obsolete.

Example

// Example of using the HasGizmoHandle property
GameObject myObject = new GameObject();

// Check if the GameObject has a gizmo handle
bool hasGizmo = myObject.HasGizmoHandle;

if (hasGizmo)
{
    // Perform actions if the GameObject has a gizmo handle
}