Delay Unity C# Code Example


Example 1: 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")
}

Example 2: how to delay something in c# unity


Invoke("DoSomething", 2);//this will happen after 2 seconds

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy