Version: 2017.1
public static bool operator != (Object x, Object y);

Descripción

Compare si dos objetos se refieren a un objeto diferente.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Transform target; void Update() { if (target != transform) print("Another object"); } }