0.2.5
- Added controls + explainer to simple-ai example
- Improved documentation
- Added a full walk-through of the API
- Updated README
- Fixed a bug where
insert
ing an entity would not increase the current entity sequence (code sample below)
world.insert(0, new A);
const entity = world.create(new B);
world.has(entity, A); // true !?