Progress Report
Let's review what was done: https://github.com/vleue/bevy_workshop/compare/before-05..05-intro-to-bevy
What You've learned
- 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
- the
Commands
queue - to issue a command from the list of commands
- and using a
Query
to access components
- the
- States, and running system only on a state or during state transition
- Code organization with plugins
- the
Plugin
trait
- the