public static void IsTrue (bool condition);
public static void IsTrue (bool condition, string message);

파라미터

messageThe string used to describe the Assert.
condition true or false.

설명

Asserts that the condition is true.

using UnityEngine;
using UnityEngine.Assertions;

public class AssertionExampleClass : MonoBehaviour { int i = 0;

void Update() { // announce if i is larger than zero Assert.IsTrue(i > 0);

// announce if i is zero Assert.IsFalse(i == 0); } }