Assert.IsTrue

Declaration

public static void IsTrue(bool condition);

Declaration

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

Parameters

message The string used to describe the Assert.
condition true or false.

Description

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); } }

Did you find this page useful? Please give it a rating: