Progress Report
Let's review what was done: https://github.com/vleue/bevy_workshop-rustweek-2025/compare/before-05..05-intro-to-bevy
What You've learned
- Bevy dependencies, and its features
- Disabling default features for build time and size, and for runtime performances
- Knowing the list of features
- Application creation and adding Bevy default plugins
- Creating the
App
struct - And adding the
DefaultPlugins
- Creating the
- Schedules and adding systems
- Adding system with
App::add_systems
- To a
Schedule
- From the list of schedules
- Adding system with
- Basic use of commands and queries
- States, and running system only on a state or during state transition
- Code organization with plugins
- The
Plugin
trait
- The