اجرای تاخیر یا delay با دستور yield در یونیتی
شنبه, ۲۴ مرداد ۱۳۹۴، ۰۶:۰۸ ب.ظ
با دستور yield می گیم چند ثانیه صبر کن بعدش برو دستور بعدی. مثال :
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { IEnumerator Example() { print(Time.time); yield return new WaitForSeconds(5); print(Time.time); } };
۹۴/۰۵/۲۴