JujuAdams / Coroutines

Coroutines for GameMaker Studio 2.3.6+

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Coroutines 1.4.0

Asynchronous execution in GML for GameMaker Studio 2.3.6 (and above)

Download the .yymps

Documentation

 

 

This library allows you to write pauseable functions in GameMaker. These pauseable functions are called "coroutines": a block of code that can be paused in the middle of execution and resumed later. Coroutines can be used for UI animation, complex networking protocols, REST API and OAuth flows, multi-stage visual effects, asynchronous save/load (required for console development), and more still. They're fantastically useful.

Getting coroutines to work in GameMaker is one thing, but making them fun to write requires a creative solution. Instead of implementing a slow custom scripting language or editor-side extension to generate coroutine-esque code, this library uses native GML macros to extend GML syntax to accommodate coroutine definitions. You can read all about the new syntax here or understand how and why it works here.

Because this library uses native GML at its core it is cross-platform, requires no additional software, and requires no external Included Files. The codebase is MIT Licensed and can be used everywhere, for free, forever. Regretably, GameMaker's HTML5 runtime is hot garbage and as a result this library is not supported for HTML5.

 

Please note that due to changes made in GMS2.3.6 to async event constant names, you will need to modify library code to get it to compile in versions older than v2.3.6.

About

Coroutines for GameMaker Studio 2.3.6+

License:MIT License


Languages

Language:Game Maker Language 52.0%Language:Yacc 48.0%