Horje
how to write coroutine in unity Code Example
how to write coroutine in unity
using UnityEngine;
using System.Collections;// In this example we show how to invoke a coroutine and execute
// the function in parallel.  Start does not need IEnumerator.public class ExampleClass : MonoBehaviour
{
    private IEnumerator coroutine;    void Start()
    {
        // - After 0 seconds, prints "Starting 0.0 seconds"
        // - After 0 seconds, prints "Coroutine started"
        // - After 2 seconds, prints "Coroutine ended: 2.0 seconds"
        print("Starting " + Time.time + " seconds");        // Start function WaitAndPrint as a coroutine.        coroutine = WaitAndPrint(2.0f);
        StartCoroutine(coroutine);        print("Coroutine started");
    }    private IEnumerator WaitAndPrint(float waitTime)
    {
        yield return new WaitForSeconds(waitTime);
        print("Coroutine ended: " + Time.time + " seconds");
    }
}




Csharp

Related
c# export datatatble to excel Code Example c# export datatatble to excel Code Example
C# Program For Check Total Occurrence Of A Number In An Array Code Example C# Program For Check Total Occurrence Of A Number In An Array Code Example
linq sum Code Example linq sum Code Example
dicionĂ¡rio c# foreach keyvaluepair Code Example dicionĂ¡rio c# foreach keyvaluepair Code Example
unity list get item at index Code Example unity list get item at index Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10