15 Free Bevy 0.17 Indie Iteration Resources for 2D Platformer Teams (2026 Q3)
Trend-timed 2026 Q3 references for indie teams shipping on Bevy 0.17 after the required-components, observers, and asset hot reload ergonomics shift—official site and docs.rs API surface, runnable examples, Cheatbook migration notes, ecosystem crates for physics and debug UI, audio, fast linkers, Tracy profiling, and GamineAI continuity for 2D platformer iteration.
Bevy Engine — Official site
Official DocsRelease truth for the current Bevy generation, news posts that call out breaking migration windows, and links into the book and API docs so you are not learning against a stale minor version.
Use for: version pinning decisions.
docs.rs — bevy crate (0.17)
ReferenceAPI surface after the ergonomics shift for `Sprite`, `Camera2d`, `AssetPlugin`, observers, and `#[require(...)]` patterns that replaced older bundle-centric tutorials still indexed in search.
Best for: exact signature checks.
Bevy — examples repository
Open SourceRunnable reference games maintained next to the engine - when LLM snippets disagree, the `examples/` tree on the same minor version is the tie-breaker for 2D, UI, and asset workflows.
Use for: copy-paste parity.
The Unofficial Bevy Cheatbook
LearningTask-oriented recipes with explicit warnings when a chapter predates 0.17 - still invaluable for patterns like states, audio, and rendering if you cross-check against `docs.rs` for renamed types.
Best for: how-do-I structure this?
bevy-assets — community asset index
Open SourceCurated plugins and templates filtered by category so you can find maintained 2D physics, UI, and tooling crates without guessing crate names from five-year-old forum posts.
Use for: crate discovery.
bevy_common_assets
Open SourceRON / JSON / TOML loaders that pair cleanly with `AssetPlugin { watch_for_changes_override: Some(true) }` for designer-driven iteration loops on configuration and level data.
Best for: data hot reload.
bevy_rapier2d
Open Source2D physics for platformers with a release cadence tracked against Bevy minors - check the compatibility table before bumping `bevy` in `Cargo.toml` during a jam week.
Use for: collisions + character controllers.
bevy_egui
Open SourceImmediate-mode debug UI for level editors, spawn inspectors, and tuning sliders without building a full UI stack while you are still proving fun on a 2D platformer core loop.
Best for: in-engine tooling.
iyes_perf_ui
Open SourceFrames-per-second and frame-time HUD that stays lightweight for indie iteration - know when a regression is renderer-bound versus script-bound before you open a heavy capture.
Use for: live perf readout.
bevy_kira_audio
Open SourceAudio pipeline that fits Bevy’s asset and app lifecycle for jump, land, and UI sounds in 2D platformers without blocking the main thread on decode stalls.
Best for: responsive SFX.
mold — fast linker
Open SourceCold-compile wall clock dominates how often you retry an idea - mold plus `lld` or `wild` on Linux/WSL and parallel `rustc` jobs routinely cuts Bevy edit-build-run loops into single-digit seconds on mid-tier laptops.
Use for: linker speedups.
Tracy profiler
Open SourceFrame-scope instrumentation with Bevy’s `trace_tracy` feature for systems that spike when tile collision or animation state machines grow across a weekend scope creep.
Best for: systems profiling.
Bevy — GitHub Discussions
CommunityMigration Q&A with searchable threads on observer patterns, required components, and asset hot reload edge cases - prefer linking your `Cargo.toml` snippet and exact Bevy patch when asking.
Best for: blocked-on-upgrade questions.
Site walkthrough tying required components, observers, and asset hot reload together for 2D iteration - use as the canonical migration spine next to this link bundle.
Use for: structured upgrade path.
Hands-on blog build that pairs with the modernization chapter for a full weekend loop - gravity, coyote time, coins with observers, and hot reload setup in one narrative.
Best for: beginner execution pass.