diff --git a/en/.doctrees/api/0_87_runtime_import.doctree b/en/.doctrees/api/0_87_runtime_import.doctree index 10ecf1d45..1c7e5708e 100644 Binary files a/en/.doctrees/api/0_87_runtime_import.doctree and b/en/.doctrees/api/0_87_runtime_import.doctree differ diff --git a/en/.doctrees/environment.pickle b/en/.doctrees/environment.pickle index 7b86b5a68..87da9a944 100644 Binary files a/en/.doctrees/environment.pickle and b/en/.doctrees/environment.pickle differ diff --git a/en/api/0_87_runtime_import.html b/en/api/0_87_runtime_import.html index 6c26b7416..d8c5536ce 100644 --- a/en/api/0_87_runtime_import.html +++ b/en/api/0_87_runtime_import.html @@ -362,8 +362,14 @@ 31 /// <typeparam name="T"></typeparam> 32 /// <returns></returns> 33 Task<T> Run<T>(Func<T> action); -34 } -35} +34 +35 /// <summary> +36 /// 指定した時間が経過している場合のみ、NextFrame() を使って1フレーム待つ +37 /// </summary> +38 /// <returns>タイムアウト時はNextFrame()を呼び出す。そうではない場合、Task.CompletedTaskを返す</returns> +39 Task NextFrameIfTimedOut(); +40 } +41}