お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
Namespace: UnityEngine
/
Inherits from: YieldInstruction
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Close指定した秒数待ちます。
WaitForSeconds はコルーチンの yield
ステートメントとともにしか使用できません。
// Prints 0 print (Time.time); // Waits 5 seconds yield WaitForSeconds (5); // Prints 5.0 print (Time.time);
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { IEnumerator Example() { print(Time.time); yield return new WaitForSeconds(5); print(Time.time); } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as IEnumerator: print(Time.time) yield WaitForSeconds(5) print(Time.time)
WaitForSeconds | 特定の秒数だけ待機するという yield 指示を作成します。 |