
0.16.0-rc.2, Breakout on Game Boy Advance, and bevy_ecs for static sites
2025-03-31
With the 0.16 release candidate upon us, the merges this week are more focused on solidifying the release candidate than introducing big new features, which is great as we approach 0.16's stable release.
Bevy 0.16.0-rc.2 is out now. Check out the rc.1 to rc.2 commits or the full 0.15.3 to 0.16 changeset.
The Better Release Notes working group and 0.16 Release Gang are improving the release process with a release content tagging workflow and a helpful guide to migration guides.
Error handling gains more improvements in #18454 and #18553 replaces the "App" default window title with the current_exe.
Required Components
The require
syntax for Required Components was reworked in #18555 to better align with what people expect when using Rust.
#[derive(Component)]
#[require(
A, // this will use A::default()
B(1), // inline tuple-struct value
C { value: 1 }, // inline named-struct value
D::Variant, // inline enum variant
E::SOME_CONST, // inline associated const
F::new(1), // inline constructor
G = returns_g(), // an expression that returns G
H = SomethingElse::new(), // expression returns SomethingElse, where SomethingElse: Into<H>
)]
struct Foo;
Tracy Support
Tracy is a real time, nanosecond resolution, remote telemetry, hybrid frame and sampling profiler. #18490 builds on top of the existing render diagnostics recording to also upload gpu timestamps to tracy.
WESL on Wasm
If you're looking forward to playing with the new WESL on wasm, some fixes landed in #18591 which should make it into the next release candidate.
Alice's Merge Train is a maintainer-level view into active PRs and how the Bevy sausage is made.

Showcase
Bevy work from the #showcase channel in Discord and around the internet. Use hashtag #bevyengine.

Breakout: Game Boy Advance
showcase
Bevy's breakout example ported to the Game Boy Advance, using the now published bevy_mod_gba.

Unhaunter
showcase
Unhaunter is an Open Source game about paranormal investigation and ghosts. It runs on Windows, Linux, and in the browser.
Releases are posted to GitHub

Exit 3A: on PBS
showcase
Exit 3A developer Mike Ramirez was interviewed about the game on their local PBS station.

Orbital Tactics
showcase
Orbital Tactics is a space shooter with orbital mechanics where you defend Earth in a gunship. The torpedoes use a model-predictive controller that picks the thrust direction that minimizes time-to-target under limited propellant. Playable on Itch.io

Simulo
showcase
Simulo is a multiplayer physics sandbox with Lua scripting that currently supports Box2d (with Rapier coming soon). Its available to wishlist on Steam.

Nodegraph Scripting
showcase
The goal of this demo is to take advantage of Bevy's reflection infrastructure for functions and values and use that to create node graphs that will run as systems. This would support modding and scripting usecases.

Crates
New releases to crates.io and substantial updates to existing projects
bevy_mod_scripting 0.11.0
crate_release
bevy_mod_scripting is an initial attempt to enable scripting within Bevy's existing framework. To compliment dynamic systems introduced in the previous updates, scripts can now register their own, fully legit Bevy components.
bevy_spacetimedb
crate_release
bevy_spacetime is an integration between Bevy and SpacetimeDB, which recently hit 1.0.
Skip camera look ups in queue uinodes authored by ickshonpe
Make system param validation rely on the unified ECS error handling via the GLOBAL_ERROR_HANDLER authored by alice-i-cecile
Add methods to work with dynamic immutable components authored by bushrat011899
Remove Image::from_buffer `name` argument (only present in debug "dds" builds) authored by brianreavis
Add sprite flipping to `testbed_2d`'s sprite scene authored by ickshonpe
Fix UpdateMode::Reactive behavior on Windows authored by aloucks
Don't panic on temporary files in file watcher authored by eckz
Improved Require Syntax authored by cart
don't wait during publishing authored by mockersf
Remove unused variable `AnimationPlayer::blend_weights`. authored by greeble-dev
Use current_exe for default window title authored by IceSentry
Update `AnimatableProperty` documentation, reduce crate dependencies authored by greeble-dev
Fix `run_system` for adapter systems wrapping exclusive systems authored by chescock
don't include file not available on docs.rs authored by mockersf
Replace ValidationOutcome with Result authored by chescock
Required Components: pass through all tokens in {} and () syntax authored by cart
Add basic release content tagging workflow authored by NthTensor
Delete migration guide section from PR template authored by alice-i-cecile
Fix animation transitions affecting other entities authored by greeble-dev
Have the mesh allocator handle modified meshes authored by JMS55
Revert PR #15481 to resolve a regression. authored by andriyDev
Fix relationship macro for multiple named members fields authored by krunchington
Fix misleading documentation of Main schedule authored by inact1v1ty
Tracy GPU support authored by JMS55
Fix and improve tracy rendering spans authored by JMS55
Update `sysinfo` version to `0.34.0` authored by GuillaumeGomez
Fix various unused import warnings with no features enabled authored by yrns
Use desired language in migration guide template authored by alice-i-cecile
Fix wesl in wasm and webgl2 authored by mockersf
Fix LogDiagnosticsPlugin log target typo authored by Satellile
bevy_reflect: Fix `TypePath` string concatenation authored by MrGVSV
Want to contribute to Bevy?
Here you can find two types of potential contribution: Pull Requests that might need review and Issues that might need to be worked on.
Pull Requests Opened this week
Fix compile errors on headless example authored by serialx
Add `no_std` compatible `ceil` method authored by Jondolf
Add `BundleRemover` authored by ElliottjPierce
Render events authored by ecoskey
add 2d_on_ui example authored by mirsella
Add angle-weighted smooth normals implementation (#18383) authored by Waridley
Fix missed RedrawRequested and WindowCloseRequested events with UpdateMode::Reactive (part 2) authored by aloucks
Add Asset::get_mut_untracked and map_asset_unchanged authored by Waridley
Bevy update min vers authored by Brezak
Add `many_morph_targets` stress test authored by greeble-dev
Fixes #13466, implementing resource_scope_by_id authored by Kugel-Blitz
Remote entity reservation v6 authored by ElliottjPierce
Move initializing the `ScreenshotToScreenPipeline` to the `ScreenshotPlugin`. authored by andriyDev
Expand MergeMeshError to include IncompatiblePrimitiveTopology variant authored by Pnoenix
Renaming system.rs to system_traits.rs authored by joshslick
Only include files when packaging `bevy`, rather than excluding authored by LikeLakers2
Add animation transition test authored by greeble-dev
Web support for atmosphere authored by mate-h
Create chainable `run_if_dyn` authored by hukasu
Add binned 2d/3d Wireframe render phase authored by tychedelia
Constify `BorderRadius::resolve` authored by ickshonpe
Added `StableInterpolate` implementations for linear colors. authored by mintlu8
Add comment to custom vertex attribute example to make it easier to convert to 2D authored by nickyfahey
Add NonNilUuid support to bevy_reflect authored by tmstorey
Return triangle index instead of vertex index (Fixes #18081) authored by brookman
Remote entity reservation v7 authored by ElliottjPierce
Expose symbols needed to replicate SetMeshBindGroup in ecosystem crates. authored by komadori
Expose some fields of Stepping authored by gustav-horn
Issues Opened this week
Add fallible variants to QueryParIter authored by cBournhonesque
Allow relationships to point to their own entity authored by Jondolf
Create a `When` system param wrapper for skipping systems that fail validation authored by alice-i-cecile
Event Reflection authored by makspll
executor buffer size should be customisable in no_std authored by mockersf
Some meshes not rendering in 0.16-rc.1 authored by alec-deason
Merging meshes with different primitive topologies leads to rendering panics rather than returning an error authored by motgenror
Component Groups authored by ElliottjPierce
PartialReflect::apply Documentation Unclear authored by anlumo
Wayland fullscreen limitations authored by xiaoshihou514
Format Bot for CI authored by bushrat011899
Mesh2d WGSL structure doesn't expose MeshTag data authored by robojeb
Making Required Components force existence as a follow-up of #18514 authored by inact1v1ty
Flexible Reflection Paths authored by makspll
AsBindGroup derive compile error with storage_texture authored by Netzwerk2
Use hooks + immutable components pattern for state transitions authored by alice-i-cecile
Immutable components example should demonstrate the hooks + observers pattern authored by alice-i-cecile
Document that 1 unit = 1 meter in Bevy's PBR rendering authored by francisdb
Easy way to read assets from bytes authored by francisdb
Sprite picking doesn't work with image render targets authored by musjj
SystemId doesn't convey that it can be used as a oneshot system authored by homebrewmellow
Wrong materials used when `GpuProcessingSupport` set to `GpuProcessingMode::None` authored by komadori
Changing Materials in Hooks/Observers causes invisible objects authored by ChristopherBiscardi