Answers for "how to start a coroutine in c#"

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
0

coroutine start unity

IEnumerator Start()
    {
        Debug.Log("Start1");
        yield return new WaitForSeconds(2.5f);
        Debug.Log("Start2");
    }
Posted by: Guest on December-25-2020

C# Answers by Framework

Browse Popular Code Answers by Language