Event-driven execution - process when events arrive.
Unlike FRAME_ACCURATE (which waits for vsync) or SAMPLE_ACCURATE (which waits for audio callback), EVENT_DRIVEN coroutines resume whenever their associated events fire. Used for input handling, UI interactions, or any sporadic/asynchronous processing.
|