Описание
Сравнивает, ссылаются ли два объекта на другой объект.
using UnityEngine;
public class Example : MonoBehaviour
{
Transform target;
void Update()
{
// the target object does not refer to the same object as our transform
if (target != transform)
{
print("Another object");
}
}
}