Example #1
0
    public IEnumerator ExampleCoroutine()
    {
        bool stopCondition = true;

        for (int i = 0; i < 10; i++)
        {
            // code to do something once every 1 second
            yield return(CoroutineHandler.Wait(1.5f));

            if (stopCondition)
            {
                yield return(CoroutineHandler.End());
            }
        }
    }