-
Notifications
You must be signed in to change notification settings - Fork 0
wait
katsumasa edited this page Apr 21, 2021
·
1 revision
wait sec time
wait frame frameCount
wait sceneChanged sceneChangeCount
| パラメータ | 型 | 内容 |
|---|---|---|
| sec | string | 秒で待ち時間を指定する |
| frame | string | frame数で待ち時間を指定する |
| sceneChanged | string | Scene切り替えが発生した回数で待ち時間を指定する |
| time | float | 待ち時間[sec] |
| frameCount | int | 待ち時間[frame] |
| sceneChangeCount | int | Scene切り替えの回数 |
指定された条件を満たす迄、イベントスクリプトを中断します。 条件にはsec(秒)、frame(フレーム数)、sceneChanged(Scene切り替え数)のいずれかを指定可能です。
: 1秒待つ
wait sec 1.0
: 1frame待つ
wait frame 1
: Scene切り替えを待つ
wait sceneChanged 1