Coroutine 2.1.5-65

The Coroutine logo

Coroutine is a simple implementation of Unity's Coroutines to be used for any C# project

Features

Coroutine adds the ability to run coroutines. Coroutines are methods that run in parallel to the rest of the application through the use of an Enumerator. This allows for the coroutine to pause execution using the yield return statement.

There are two predefined ways to pause a coroutine:

  • Waiting for a certain amount of seconds to have passed
  • Waiting for a certain custom event to occur

Additionally, Coroutine provides the following features:

  • Creation of custom events to wait for
  • No multi-threading, which allows for any kind of process to be executed in a coroutine, including rendering
  • Thread-safety, which allows for coroutines to be started from different threads

How to Use

Setting up the CoroutineHandler

The CoroutineHandler is the place where coroutines get executed. For this to occur, the Tick method needs to be called continuously. The Tick method takes a single parameter which represents the amount of time since the last time it was called. It can either be called in your application's existing update loop or as follows.

var lastTime = DateTime.Now;
while (true) {
    var currTime = DateTime.Now;
    CoroutineHandler.Tick(currTime - lastTime);
    lastTime = currTime;
    Thread.Sleep(1);
}

Creating a Coroutine

To create a coroutine, simply create a method with the return type IEnumerator<Wait>. Then, you can use yield return to cause the coroutine to wait at any point:

private static IEnumerator<Wait> WaitSeconds() {
    Console.WriteLine("First thing " + DateTime.Now);
    yield return new Wait(1);
    Console.WriteLine("After 1 second " + DateTime.Now);
    yield return new Wait(5);
    Console.WriteLine("After 5 seconds " + DateTime.Now);
    yield return new Wait(10);
    Console.WriteLine("After 10 seconds " + DateTime.Now);
}

Starting a Coroutine

To start a coroutine, simply call Start:

CoroutineHandler.Start(WaitSeconds());

Using Events

To use an event, an Event instance first needs to be created. When not overriding any equality operators, only a single instance of each event should be used.

private static readonly Event TestEvent = new Event();

Waiting for an event in a coroutine works as follows:

private static IEnumerator<Wait> WaitForTestEvent() {
    yield return new Wait(TestEvent);
    Console.WriteLine("Test event received");
}

Of course, having time-based waits and event-based waits in the same coroutine is also supported.

To actually cause the event to be raised, causing all currently waiting coroutines to be continued, simply call RaiseEvent:

CoroutineHandler.RaiseEvent(TestEvent);

Additional Examples

For additional examples, take a look at the Example class.

Showing the top 20 packages that depend on Coroutine.

Packages Downloads
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
95
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
100
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
105
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
111
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
118
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
136
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
140
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
151
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
193
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
201
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
204
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
218
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
227
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
228
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
257
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
526
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
558
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
680
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
828

.NET Framework 4.5

.NET 6.0

  • No dependencies.

.NET Standard 2.0

  • No dependencies.

Version Downloads Last updated
2.1.5-65 75 02/23/2023
2.1.4-64 64 02/23/2023
2.1.4-63 55 02/23/2023
2.1.4-62 66 10/31/2022
2.1.4-61 66 10/22/2022
2.1.4-60 61 10/22/2022
2.1.4-59 54 10/22/2022
2.1.4-58 59 09/14/2022
2.1.3-57 49 09/14/2022
2.1.3-56 107 12/29/2021
2.1.2-55 94 12/29/2021
2.1.2-54 96 12/29/2021
2.1.2-53 80 12/29/2021
2.1.1-51 100 12/29/2021
2.1.1-3 88 12/29/2021
2.1.1-2 84 12/29/2021
2.1.0-52 78 12/29/2021
2.1.0-50 86 12/29/2021
2.1.0-48 89 12/29/2021
2.0.2-47 87 12/29/2021
2.0.2-46 100 12/29/2021
2.0.2-45 80 12/29/2021
2.0.2-44 107 12/29/2021
2.0.2-43 120 12/29/2021
2.0.2-39 78 12/29/2021
2.0.2-38 83 12/29/2021
2.0.2-37 78 12/29/2021
2.0.2-36 76 12/29/2021
2.0.2-35 87 12/29/2021
2.0.2-34 105 12/29/2021
2.0.2-33 93 12/29/2021
2.0.2-32 86 12/29/2021
2.0.2-31 84 12/29/2021
2.0.2-30 95 12/29/2021
2.0.1-29 81 12/29/2021
2.0.1-28 99 12/29/2021
2.0.1-27 86 12/29/2021
2.0.1-26 107 12/29/2021
2.0.1-25 84 12/29/2021
2.0.1-24 94 12/29/2021
2.0.1-23 75 12/29/2021
2.0.1-22 94 12/29/2021
2.0.1-21 90 12/29/2021
2.0.1-2 98 12/29/2021
2.0.1-1 82 12/29/2021
2.0.0-20 90 12/29/2021
2.0.0-18 75 12/29/2021
1.0.4-17 97 12/29/2021
1.0.4-15 93 12/29/2021
1.0.4-14 83 12/29/2021
1.0.3-13 93 12/29/2021
1.0.3-12 89 12/29/2021
1.0.3-11 99 12/29/2021
1.0.3-10 87 12/29/2021
1.0.3-9 86 12/29/2021
1.0.3-8 107 12/29/2021
1.0.3-7 87 12/29/2021
1.0.3-6 74 12/29/2021
1.0.2-5 89 12/29/2021