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
  • Schedules and adding systems
  • Basic use of commands and queries
    • The Commands queue
    • To issue a commanddocs.rs/bevy/0.16.0/
    • And using a Query to access components
  • States, and running system only on a state or during state transition
  • Code organization with plugins