jecs/docs/learn/concepts/addons.md

57 lines
1.6 KiB
Markdown
Raw Normal View History

2025-01-17 23:13:34 +00:00
# Addons
2025-01-17 23:14:26 +00:00
A collection of third-party jecs addons made by the community. If you would like to share what you're working on, [submit a pull request](https://github.com/Ukendio/jecs)!
2025-03-30 20:29:43 +00:00
# Development tools
2025-01-17 23:13:34 +00:00
## [jabby](https://github.com/alicesaidhi/jabby)
2025-01-17 23:14:26 +00:00
2025-01-17 23:13:34 +00:00
A jecs debugger with a string-based query language and entity editing capabilities.
2025-04-17 19:08:32 +00:00
## [jecs_entity_visualiser](https://github.com/Ukendio/jecs/blob/main/addons/entity_visualiser.luau)
2025-03-30 20:29:43 +00:00
A simple entity and component visualiser in the output
2025-04-17 19:08:32 +00:00
## [jecs_lifetime_tracker](https://github.com/Ukendio/jecs/blob/main/addons/lifetime_tracker.luau)
2025-03-30 20:29:43 +00:00
A tool for inspecting entity lifetimes
# Helpers
2025-04-17 19:08:32 +00:00
## [jecs_observers](https://github.com/Ukendio/jecs/blob/main/addons/observers.luau)
2025-03-30 20:29:43 +00:00
Observers for queries and signals for components
2025-01-17 23:13:34 +00:00
# Schedulers
2025-01-17 23:14:26 +00:00
2025-01-17 23:13:34 +00:00
## [lockstep scheduler](https://gist.github.com/1Axen/6d4f78b3454cf455e93794505588354b)
2025-01-17 23:14:26 +00:00
2025-01-17 23:13:34 +00:00
A simple fixed step system scheduler.
2025-01-17 23:14:26 +00:00
## [rubine](https://github.com/Mark-Marks/rubine)
An ergonomic, runtime agnostic scheduler for Jecs
2025-01-17 23:13:34 +00:00
## [jam](https://github.com/revvy02/Jam)
2025-01-17 23:14:26 +00:00
2025-01-17 23:13:34 +00:00
Provides hooks and a scheduler that implements jabby and a topographical runtime
2025-02-07 06:18:41 +00:00
## [planck](https://github.com/YetAnotherClown/planck)
An agnostic scheduler inspired by Bevy and Flecs, with core features including phases, pipelines, run conditions, and startup systems.
2025-03-30 20:29:43 +00:00
Planck also provides plugins for Jabby, Matter Hooks, and more.
# Replication
## [feces](https://github.com/NeonD00m/feces)
A generalized replication system for jecs
# Input
## [Axis](https://github.com/NeonD00m/axis)
An agnostic, simple and versatile input library for ECS
2025-03-30 20:29:43 +00:00
# Observers