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.
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.
To check if a GameObject
has a gizmo handle, you should use the HasGizmoHandle
property instead of HasGimzoHandle
as the latter is obsolete.
// 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