Answers for "how to make unity wait c#"

C#
1

wait in unity

IEnumerator wait(float waitTime){ //creating a function
        yield return new WaitForSeconds(waitTime); //tell unity to wait!!
    }
    
    void Start(){
    	print("start");
        wait(1); ///using function
        print("Good night")
    }
Posted by: Guest on June-07-2021

C# Answers by Framework

Browse Popular Code Answers by Language