Fast Dynamic Entity Component System (ECS)
Find a file
Mergul 16a5696840 -removed UpdateBySystems version switch (it's now default behaviour)
-beginRegister() and endRegister() was added (every register functions must be called between this calls, update calls can't be called there)
-SystemCallers and Systems dependecies is rebuild always in endRegister();
-beginRegister() clear all SystemCallers and Systems dependencies
-possibility to get System ID and execution state
-JobGroup has now pointer to it's parent (SystemCaller)
-SystemCaller clean up destructor
2018-10-27 17:34:27 +02:00
import/ecs -registering same system multiple times only replace pointer for callback 2018-09-18 13:28:04 +02:00
source -removed UpdateBySystems version switch (it's now default behaviour) 2018-10-27 17:34:27 +02:00
tests -removed UpdateBySystems version switch (it's now default behaviour) 2018-10-27 17:34:27 +02:00
.gitignore -registering same system multiple times only replace pointer for callback 2018-09-18 13:28:04 +02:00
dub.json -removed UpdateBySystems version switch (it's now default behaviour) 2018-10-27 17:34:27 +02:00
README.md -changed README 2018-09-07 20:54:29 +02:00

Dynamic Entity Component System

Entity-Component-System implementation in D language.