void start()
StartCoroutine(Text());
IEnumerator Text() // <- its a standalone method
{
Debug.Log("Hello")
yield return new WaitForSeconds(3)
Debug.Log("ByeBye")
}
Invoke("functionname", seconds);
// this is for C#
void start()
{
Invoke("DoSomething", 2);//this will happen after 2 seconds
}
void DoSomething()
{
Debug.Log("2 seconds has passed!");
}
using UnityEngine;
using System.Collections;
public class WaitForSecondsExample : MonoBehaviour
{
void Start()
{
StartCoroutine(Example());
}
IEnumerator Example()
{
print(Time.time);
yield return new WaitForSeconds(5);
print(Time.time);
}
}