Compare commits

..

No commits in common. "c62db9f8c32a83da97e3c722bdde8c383160734c" and "740647104bb4a74f27bdce2e21b94dc12e660b9a" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View file

@ -12,7 +12,7 @@ Just a stupidly fast Entity Component System
- Zero-dependency package
- Optimized for column-major operations
- Cache friendly [archetype/SoA](https://ajmmertens.medium.com/building-an-ecs-2-archetypes-and-vectorization-fe21690805f9) storage
- Rigorously [unit tested](https://github.com/Ukendio/jecs/actions/workflows/unit-testing.yaml) for stability
- Rigorously [unit tested](https://github.com/Ukendio/jecs/actions/workflows/ci.yaml) for stability
### Installation
@ -70,8 +70,6 @@ end
-- sara is the child of alice
```
### Benchmarks
21,000 entities 125 archetypes 4 random components queried.
![Queries](assets/image-3.png)
Can be found under /benches/visual/query.luau

View file

@ -7,7 +7,7 @@ type Observer = {
type Monitor = {
callback: (jecs.Entity, jecs.Entity) -> (),
query: jecs.Query<any>
queyr: jecs.Query<any>
}
export type PatchedWorld = jecs.World & {