Answers for "do something after time unity"

C#
15

Time delay C# unity

void start()
StartCoroutine(Text());

IEnumerator Text()  //  <-  its a standalone method
{
	Debug.Log("Hello")
    yield return new WaitForSeconds(3)
    Debug.Log("ByeBye")
}
Posted by: Guest on March-07-2020
8

how to delay something in c# unity

Invoke("DoSomething", 2);//this will happen after 2 seconds
Posted by: Guest on June-16-2020

Code answers related to "do something after time unity"

C# Answers by Framework

Browse Popular Code Answers by Language