Version: 2017.3

WaitForSecondsConstructor

マニュアルに切り替える
public WaitForSeconds (float seconds);

説明

スケール化した時間を使用して、特定の秒数だけ待機するという yield 指示を作成します

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { IEnumerator Example() { print(Time.time); yield return new WaitForSeconds(5); print(Time.time); } }