bool HasGimzoHandle { get; set; }

robot_2Generated
code_blocksInput

Description

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

Usage

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

Example

// Example of using the recommended property
bool hasGizmoHandle = myGameObject.HasGizmoHandle;

// Obsolete usage
#pragma warning disable 0618 // Disable obsolete warning
bool hasGimzoHandle = myGameObject.HasGimzoHandle;
#pragma warning restore 0618 // Restore warning