facebook twitter hatena line email

Unity/Csharp/Coroutine

提供: 初心者エンジニアの簡易メモ
2022年1月5日 (水) 11:07時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==コールチンとは== 条件になるまで待機するもの ==数秒後まで待機== <pre> using System.Collections; private void Start() { StartCoroutine(Delay...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

コールチンとは

条件になるまで待機するもの

数秒後まで待機

using System.Collections;
private void Start() {
  StartCoroutine(DelayMethod1(5.0f, 123));
}
IEnumerator DelayMethod1(float delay, int hoge) {
  yield return new WaitForSeconds(delay);
  // ここに処理を追加
}

unity/Csharp/Invoke [ショートカット]

入力待機

using System.Collections;
private void Start() {
  StartCoroutine(WaitInput());
}
IEnumerator WaitInput () {
    yield return new WaitUntil(() => Input.GetKeyDown(KeyCode.LeftArrow));
}

参考:https://tofgame.hatenablog.com/entry/2019/04/10/141614