xxxxxxxxxx
// Unity Instance ID
// transform.GetInstanceID() provides the instance ID for the Transform component itself.
// transform.gameObject.GetInstanceID() provides the instance ID for the GameObject to which the transform component is attached.
Debug.Log($"transform.gameObject ID :: {transform.gameObject.GetInstanceID()}");
Debug.Log($"transform :: {transform.GetInstanceID()}");