785 B
785 B
name, description, license, compatibility, metadata
| name | description | license | compatibility | metadata | ||||
|---|---|---|---|---|---|---|---|---|
| bevy-ecs | Design clean Bevy ECS layouts with components, resources, events, systems, and states | MIT | opencode |
|
What I do
- turn game idea into ECS parts
- split data across components, resources, and events
- propose system boundaries
- suggest state flow
- keep Bevy code idiomatic and small
When to use me
Use when:
- new mechanic starts
- code feels like one giant system
- feature needs plugin split
- event vs resource choice unclear
Output shape
- goal
- ECS map
- file plan
- patch order
- verify commands
Rules
- prefer Bevy built-ins before extra crates
- keep
main.rsthin - prefer events for loose coupling
- prefer states for app flow
- keep names specific