版本:Unity 6(6000.0)
语言英语
  • C#

断言.IsTrue

建议改进

成功!

感谢帮助我们提升 Unity 文档的质量。尽管不可能接受所有提交,但我们确实阅读每条来自用户的建议改进,并在适用情况下进行更新。

关闭

提交失败

由于某些原因,你建议的更改无法提交。请在几分钟后<a>重试</a>。感谢你抽出时间帮助我们提升 Unity 文档的质量。

关闭

取消

声明

public static void IsTrue(bool condition);

声明

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

参数

message 用于描述断言的字符串。
condition truefalse

说明

断言条件为 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); } }