While语句
UnigineScript的应用范围仅限于实现与材质相关的逻辑(材质表达式,可编写脚本的材质,画笔材质)。 不要将UnigineScript用作应用程序逻辑的语言,请改用C#/C++,因为这些API是首选的。 无法保证UnigineScript中新引擎功能的可用性(超出其应用范围),因为当前的支持级别仅假设已解决关键问题。
最简单的循环语句。
语法
while(condition) {
// some_code;
}
部分
- condition 为 真时,在循环中执行some_code。 If condition一开始就为假,永远不会执行 some_code。
示例
int i = 0;
while(i < 10) {
log.message("%d ",i);
i++;
}
// 输出为: 0 1 2 3 4 5 6 7 8 9
最新更新:
2024-08-16
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)