Creates a yield instruction to wait for a given number of seconds using scaled time.
// Prints 0
print (Time.time);
// Waits 5 seconds
yield WaitForSeconds (5);
// Prints 5.0
print (Time.time);
no example available in C#