Expand description
Re-export important parts of bevy_ecs and bevy_app and make them
more compatible with Azalea.
This is completely compatible with bevy_ecs, so it won’t cause issues if
you use plugins meant for Bevy.
Changes:
- Add
TickPlugin,TickStageandAppTickExt(which addsapp.add_tick_systemandapp.add_tick_system_set). - Change the macros to use azalea/azalea_ecs instead of bevy/bevy_ecs
- Rename
world::Worldtoecs::Ecs - Re-export
bevy_appin theappmodule.
Re-exports§
Modules§
- bundle
- component
- ecs
- entity
- Entity handling types.
- event
- Event handling types.
- query
- schedule
- Tools for controlling system execution.
- storage
- Storage layouts for ECS data.
- system
Structs§
- Tick
Plugin - Tick
Stage - A
Stagethat runs every 50 milliseconds.