ruhee
0
Q:

how to make a line of code wait c#

System.Threading.Thread.Sleep(Milliseconds);
10
//In the example below the script will right "Hello" and 3 seconds later write "Goodbye" in the console
Start()
{
  	//Call the function Example()
	StartCoroutine(Example());
}

Example()
{
  	Console.WriteLine("Hello");
  	//wait 3 seconds
	yield return new WaitForSeconds(3);
  	Console.WriteLine("Goodbye");
}
0

New to Communities?

Join the community