このページを含むバージョン:
このページを含まないバージョン:
二つのオブジェクトが異なるオブジェクトを参照しているか比較します
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Transform target; void Update() { if (target != transform) print("Another object"); } }