Releases: Byteron/RelEcs
Releases · Byteron/RelEcs
1.4.1
- unified QueryBuilder and Query functions to reduce API surface
- World is now Property of Systems
- mem alloc improvements
1.3.0
This releases disallows duplicate components adds to entities, which previously was possible and messed with tables in a dangerous way.
1.2.0
System as Interface, fixed a problem with removing relationships of d…
1.1.0
API Overhaul.
Updated API can be found in the README.md.
0.2.3
more stability improvements.
most notably, the table lock was removed and instead there is now a global world lock, preventing edge case bugs when adding / removing components or spawning / despawning entities in nested query loops.
0.2.2
stability improvements / crash fixes / ReplaceElement / AddOrReplaceElement.
0.2.1
fixes an issue in queries where it misses some entities that should have been iterated
0.2.0
second release.
this one removes the .ForEach(() => { })
syntax, and replaces it with an actual foreach (var () in query) { }
loop.