While语句
UnigineScript已过时,将在以后的版本中删除。请考虑切换到C#/ C ++,因为这些API是首选。无法保证UnigineScipt中新引擎功能的可用性,因为当前的支持水平仅假设解决关键问题。
最简单的循环语句。
语法
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
最新更新:
2020-04-10
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)