├── .gitattributes ├── .gitignore ├── JoinAllExample.tscn ├── JoinEitherExample.tscn ├── LICENSE ├── README.md ├── ResumeExample.tscn ├── addons └── coroutines │ ├── Coroutine.gd │ ├── coroutines.gd │ └── plugin.cfg ├── icon.svg ├── icon.svg.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BimDav/Godot4-Coroutines/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /JoinAllExample.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BimDav/Godot4-Coroutines/HEAD/JoinAllExample.tscn -------------------------------------------------------------------------------- /JoinEitherExample.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BimDav/Godot4-Coroutines/HEAD/JoinEitherExample.tscn -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BimDav/Godot4-Coroutines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BimDav/Godot4-Coroutines/HEAD/README.md -------------------------------------------------------------------------------- /ResumeExample.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BimDav/Godot4-Coroutines/HEAD/ResumeExample.tscn -------------------------------------------------------------------------------- /addons/coroutines/Coroutine.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BimDav/Godot4-Coroutines/HEAD/addons/coroutines/Coroutine.gd -------------------------------------------------------------------------------- /addons/coroutines/coroutines.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BimDav/Godot4-Coroutines/HEAD/addons/coroutines/coroutines.gd -------------------------------------------------------------------------------- /addons/coroutines/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BimDav/Godot4-Coroutines/HEAD/addons/coroutines/plugin.cfg -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BimDav/Godot4-Coroutines/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BimDav/Godot4-Coroutines/HEAD/icon.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BimDav/Godot4-Coroutines/HEAD/project.godot --------------------------------------------------------------------------------