Fast Dynamic Entity Component System (ECS)
Find a file
Mergul d3f7593afc -BlockAllocator is no longer template
-Multithreaded IDManager.getNewID()
 *use implementation with free IDs stack (instead of classic pool)
-support for multiple UpdatePasses. Passes are added by name, and must be called between begin() end() functions.
-removed mutex from addEntity()
-commit() function added. Used to commit all changes made while update() call. Called automatically by begin() end() functions.
2018-10-25 11:46:08 +02:00
import/ecs -registering same system multiple times only replace pointer for callback 2018-09-18 13:28:04 +02:00
source -BlockAllocator is no longer template 2018-10-25 11:46:08 +02:00
tests -BlockAllocator is no longer template 2018-10-25 11:46:08 +02:00
.gitignore -registering same system multiple times only replace pointer for callback 2018-09-18 13:28:04 +02:00
dub.json -call update by Systems instead of EntityTypes (version UpdateBySystems) 2018-10-10 18:35:20 +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.