断言值相等。如果未指定比较器,则使用 EqualityComparer<T>.Default。
using UnityEngine; using UnityEngine.Assertions;
public class AssertionExampleClass : MonoBehaviour { void Update() { //Make sure the Game Object is always tagged as "Player" Assert.AreEqual("Player", gameObject.tag); } }