Answers for ""c#" start coroutine"

C#
3

how to start a coroutine in c#

void Start()
    {
        StartCoroutine(Test());
    }

    IEnumerator Test()
    {
        yield return new WaitForSeconds[2];
    }
Posted by: Guest on December-31-2020

C# Answers by Framework

Browse Popular Code Answers by Language