
0.16 Release Candidate, bevy lint 0.2, and more game demos
2025-03-24
The first Bevy 0.16 release candidate: 0.16.0-rc.1
is out this week!
bevy_lint 0.2 is also out this week with new lints, better Windows support, and more. The Bevy CLI working group has been making some great progress on the Bevy CLI as well.
Also this week, Settletopia gets modding support, Greenfeet Haven gets a Steam Demo, POLDERS becomes Waterwolf, and more.
Required Components
As of #18309, associated constants can be specified directly when requiring the Component type they're associated with. A LockedAxes
Component with a LockedAxes:: ROTATION_LOCKED
associated const (like this example from Avian) can now be specified as such:
#[derive(Component)]
#[require(
LockedAxes = ROTATION_LOCKED),
)]
pub struct CharacterController;
Better Release Notes Working Group
The Bevy release notes and blog post are stellar artifacts produced every release cycle. Producing them is a lot of work that is a high risk category for causing burnout. The Better release notes working group has put together and merged a set of recommendations for building the release notes moving forward to make the process more maintainable and incremental over the course of a development cycle, rather than being a big push at the end.
no_std library example
A new folder of examples, no_std
, was added in #18333. The first example, no_std_library
, demonstrates how to make a no_std
compatible Bevy library catering to an audience that might not even know what no_std
is yet.
Link iOS with rustc
The iOS example gets a great simplification with #14780 avoiding some of the complexity of the previous approach.
Check out the new approach in examples/mobile
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.

Waterwolf
showcase
Many things have been added to Polders, which is now called Waterwolf, like fog of war, villagers, trade, a whole flippin' in-world UI system. Current work focuses on a food system based around cheese!

Settletopia – Modding Support
showcase
Integration of modding support into Settletopia using WIT and wasmtime.
- Mods are written in Rust, with provided Rust libraries to simplify development.
- The game’s default configuration will be published as mods, allowing players to clone, modify, and extend it.
- Rust’s tooling brings major benefits, including documentation, static type checking, and access to the Rust library ecosystem.

Peck, not Parry
showcase
This early demo is using Peck for collision detection rather than Parry. Peck aims to be an alternative to Parry, built with bevy_math and glam types. The contacts in the demo are using SAT for rectangle-rectangle contacts, and a combo of GJK+EPA and feature-based clipping for general contact manifold computation between convex polygons.

Rope Cube
showcase
Use your mouse to control a cube on a rope and fling your way to the goal in this Rapier physics based game.

Greenfeet Haven Steam Demo
showcase
A year of work has gone into this new colony sim: Greefeet Haven. It currently has a Demo on Steam in preparation for the upcoming city builder festival.
On the technical side, the project is about 70,000 lines of code,

WIP Card Mechanics
showcase
A work in progress crate for managing hands of cards including card selection by mouse, drag and drop, and cards "snapping back" to their positions.

Triangulation improvements
showcase
Triangulation improvements from a demo we've seen before (old discord thread).
There's some good discussion of triangulation approaches in the Discord thread, including Delaunay,Polygon Triangulation With Hole, a Constrained Delaunay Triangulation implementation series, as well as the spade and geo crates.


Scrapland Level Viewer
showcase
A level, model, and animation viewer for American McGee's Scrapland. The viewer uses the vfs crate to create a virtual file system on top of the game's asset archive file format and then uses binrw for the parsing of the actual asset files.
Source is available on GitHub

Bevy Millions Ball
showcase
A follow-up to the bevy_radix_sort crate, Bevy Millions Ball is a high-performance collision detection demo capable of simulating millions of spheres in real-time. The implementation utilizes bevy_radix_sort for spatial hashing and employs WGSL compute shaders for parallelization

Online Boxing 3D V2
showcase
Online Boxing 3D V2 is a fully physically controlled 3D boxing game; Everything is simulated. The game has been in development for four years and future work includes graphics improvements and online multiplayer. The physics engine is physx.


Lumina
showcase
Lumina is a top down fast paced objective based PvPvE game. It makes use of a number of interesting technologies such as Radiance Cascades, Typst, Vello, and blenvy. The code is available on GitHub

Factory Game Fundamentals
showcase
The fundamental mechanics for a factory game, including conveyor locomotion, item production, and item consumption. Items reference their conveyors using entity containing components, much like the upcoming Relationship Components, and have a progress value from 0-1. Progress values greater than 1 cause the "output port" to have a "pending item".

Crates
New releases to crates.io and substantial updates to existing projects
bevy_lint 0.2
crate_release
bevy_lint is part of the Bevy CLI working group. The crate is a custom linter for the Bevy game engine, similar to Clippy, that can be used to enforce Bevy-specific idioms, catch common mistakes, and help you write better code.
0.2 enables configuring lints in Cargo.toml
, Bevy 0.15 support, and three new lints!
- borrowed_reborrowable
- insert_unit_bundle
- duplicate_bevy_dependencies
bevy_lint 0.2 also now works on Windows without any additional configuration.

bevy_serialization_extras 0.9
crate_release
A library for component oriented serialization.
0.9 is a big update with a lot of refactors, new features, performance improvements, and quality life improvements for all of its 3 crates.



bevy_skein 0.1
crate_release
Work with Bevy components in Blender.
Skein is a Bevy Plugin and a Blender Addon that work together to:
- Pull the reflection data from a Bevy app into Blender via BRP
- Allow inserting and modifying Components on Objects, Meshes, and Materials in Blender.
- Export that data alongside the .gltf files
- Instantiate those components automatically when spawning Scenes
Skein supports Blender's Library Overrides and Drivers. The 0.1 release supports Bevy 0.15.
Bevy Enhanced Input 0.8.0
crate_release
Bevy Enhanced Input 0.8.0 is a crate for dynamic and contextual input mappings for Bevy, inspired by Unreal Engine Enhanced Input.
In 0.8, trait-based context creation was replaced with triggers.
bevy_miniquad
crate_release
bevy_miniquad replaces Bevy's default windowing and rendering plugins with miniquad-based ones.
This release brings the crate up to date with Bevy 0.15 and miniquad 0.4.
bevy_mod_scripting 0.10.0
crate_release
bevy_mod_scripting is an initial attempt to enable scripting within Bevy's existing framework.
0.10 brings
- Parallelisable & Parameterisable Script Systems
- A
types
global is now exposed containing all of the types found in the type registry - The LAD format now supports arbitrary
TypedThrough
types as global instances
bevy_render: Derive `Error` on `ViewportConversionError` authored by MrGVSV
update superlinter authored by mockersf
Derive Clone for `ImageLoaderSettings` and `ImageFormatSetting` authored by Noxmore
Canonicalize the root path to match the canonicalized asset path. authored by andriyDev
implement get_many_unique authored by Victoronz
Add process cpu/memory usage to SystemInformationDiagnosticsPlugin authored by tjlaxs
Pad out binding arrays to their full length if partially bound binding arrays aren't supported. authored by pcwalton
Build performance advice authored by mockersf
bevy: Replace unnecessary tuple type registrations authored by MrGVSV
Use `UiRect::all` to build the `UiRect` constants authored by ickshonpe
Link iOS example with `rustc`, and avoid C trampoline authored by madsmtm
Revert "don't use bevy_pbr for base bevy_gizmos plugin" authored by mockersf
Fixes for WESL on Windows authored by tychedelia
Fix clippy lints on Rust beta authored by rparrett
bevy_winit: Create the window initially invisible as required by AccessKit authored by mwcampbell
Make prepare_view_targets() caching account for CameraMainTextureUsages authored by JMS55
Revert "Transform Propagation Optimization: Static Subtree Marking (#18094)" authored by mockersf
Provide a safe abstraction for split access to entities and commands authored by ItsDoot
Incorporate viewport position into clamping in `camera_system` authored by mweatherley
Fixed Reflect derive macro on empty enums (#18277) authored by Wuketuke
`UiRect::AUTO` authored by ickshonpe
Expose textures to ViewTarget::post_process_write() authored by JMS55
bevy_reflect: Add clone registrations project-wide authored by MrGVSV
wrap EntityIndexMap/Set slices as well authored by Victoronz
FilteredResource returns a Result instead of a simple Option authored by andristarr
Update docs to explain default Hasher issue authored by krunchington
Fix Formatting of Optimisation Table authored by bushrat011899
Add `no_std` Library Example authored by bushrat011899
Extract sprites into a `Vec` authored by ickshonpe
remove circular dependency between bevy_image and bevy_core_pipeline authored by mockersf
only handle bin examples in showcase authored by mockersf
Support skipping Relationship on_replace hooks authored by cart
remove circular dependency between bevy_sprite and bevy_image authored by mockersf
Force serial command encoding on Linux/amdvlk authored by fatho
Remove example causing circular dependency in `bevy_platform_support` authored by bushrat011899
Remove commented-out code authored by ickshonpe
Unify picking backends authored by chompaa
Unify and simplify command and system error handling authored by alice-i-cecile
Small Docs PR for Deferred Worlds authored by Carter0
Unified picking cleanup authored by alice-i-cecile
Fix dynamic scene resources not being entity mapped authored by ElliottjPierce
gate import on bevy_animation in bevy_gltf authored by mockersf
Add methods to bulk replace relationships on a entity authored by Brezak
enable std when building bevy_dylib authored by mockersf
Fix unecessary specialization checks for apps with many materials authored by tychedelia
Fix specialize_shadows system ordering authored by JMS55
Add bevy_anti_aliasing authored by IceSentry
Fix `bevy_ecs` doc tests with `--all-features` authored by greeble-dev
Split example file docblock and code when generating web examples markdown authored by doup
Gltf handle missing bindposes authored by robtfm
Update sprite_slice, spatial_audio_3d, spatial_audio_2d examples to use children macro authored by krunchington
Establish structure and process for in-repo release notes authored by alice-i-cecile
Add more methods to `RelationshipSourceCollection` authored by Brezak
Fix incorrect command given by the benchmarking README authored by kirawulff
Fix warning spam on `mesh2d_manual` example authored by hukasu
Update testbed_ui to use Improved Spawning API authored by krunchington
Newtype `Anchor` authored by ickshonpe
Required components accept const values (#16720) authored by Wuketuke
Replace VisitEntities with MapEntities authored by cart
Fix missed error_handling example rename and update description authored by alice-i-cecile
Fix `clippy::unnecessary-literal-unwrap` in `bevy_time` authored by villor
Fix double-despawning in `despawn_world` and `despawn_world_recursive` benchmarks authored by kirawulff
Fix clippy warning about unnecessary return in `single_threaded_taks_pool.rs` authored by Brezak
Properly gate functionality on `http` in `bevy_remote` authored by bushrat011899
Address lints in `bevy_platform_support` authored by bushrat011899
Address `clippy::let_and_return` in `bevy_utils` authored by bushrat011899
Fix `clippy::let_and_return` in `bevy_ecs` authored by bushrat011899
Properly gate imports in `bevy_scene` authored by bushrat011899
Ensure `dds` enables `bevy_core_pipeline/dds` in `bevy_anti_aliasing` authored by bushrat011899
Remove `bevy_input_focus` from `bevy_a11y` authored by bushrat011899
Fix lint errors on `bevy_ecs` with disabled features authored by villor
Update text2d example to use children macro authored by krunchington
Update shader_prepass, testbed_2d, and first_person_view_model examples to use children! macro authored by krunchington
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
Derive MapEntities authored by Bleachfuel
`bevy_ecs` Debloating for `Res`, `ResMut`, and `BundleInserter` authored by bushrat011899
Add AlignedRawBufferVec authored by IceSentry
Add tooltip with required components for trait tags on docs.rs authored by Weihnachtsbaum
Fix Scene hot reloading. authored by andriyDev
Provide `abort` and `exit` on all platforms authored by bushrat011899
Added `io` Module to `bevy_platform_support` authored by bushrat011899
Make TAA non-experimental, fixes authored by JMS55
Fix compilation of compile_fail_utils when not using rustup authored by kristoff3r
Update bincode to 2.0 authored by kristoff3r
Fix `Anchor` component inconsistancies authored by ickshonpe
Remove remaining internal use of `!Send` resources authored by joshua-holmes
Add MainPassResolutionOverride for DLSS authored by JMS55
Remote entity reservation v4 authored by ElliottjPierce
Clean up unused dependencies authored by IceSentry
Fix `run_system` for adapter systems wrapping exclusive systems authored by chescock
Allow entity wrappers in entity set and map types authored by Victoronz
Finish #17558, re-adding `insert_children` authored by ElliottjPierce
KTX2 Updates: ETC1s/BasisLZ, ASTC HDR, and faster Zstd authored by brianreavis
Introduce Displacement Map Example authored by craigfay
Basics for the multi_window_camera_ui example authored by tjlaxs
Add bevy_post_processing authored by IceSentry
reexport entity set collections in entity module authored by Victoronz
Replace `try_query` authored by ElliottjPierce
Reduce dependencies on `bevy_render` by preferring `bevy_mesh` imports authored by greeble-dev
info: update log_diagnostics.rs example authored by shwwwa
Fix documentation: incorrect references to the `Update` schedule in `ExitCondition` authored by Henauxg
Remote entity reservation v5 authored by ElliottjPierce
Get names of queued components authored by ElliottjPierce
Make system param validation rely on the unified ECS error handling via the GLOBAL_ERROR_HANDLER authored by alice-i-cecile
Implement `RelationshipSourceCollection` for `IndexSet` authored by Brezak
`Projection` Improvements authored by aevyrie
Don't panic on temporary files in file watcher authored by eckz
Restructure morph target pipeline to reduce crate dependencies authored by greeble-dev
Create `bevy_render_2d` crate authored by hukasu
Implement `RelationshipSourceCollection` for `BTreeSet` authored by Brezak
Rename EntityBorrow/TrustedEntityBorrow to ContainsEntity/EntityEquivalent authored by Victoronz
Fix UpdateMode::Reactive behavior on Windows authored by aloucks
Update and rename system.rs to system_management.rs authored by joshslick
Tracy GPU support authored by JMS55
Move the construction of `LightingInput` in `apply_pbr_lighting` into its own function. authored by 13ros27
Fix lints and re-organize gated imports for `bevy_gizmos` authored by villor
Address Lints in `bevy_reflect` authored by bushrat011899
Regression fix: Reintroduce sorting/reordering methods on Children authored by inodentry
enable x11 by default in bevy_winit authored by mockersf
Make `GatedReader` a test-only symbol, and allow all `bevy_asset` tests to all run single threaded. authored by andriyDev
Issues Opened this week
Redo #17581, removing bevy_pbr dependency in bevy_gizmos authored by alice-i-cecile
Invalid Surface Running 3D Scene Example authored by Badgerup1510
SpotLight / PointLight artifacts in FogVolume authored by TimiSillman
With Text2d anchors are stored in a component, but for sprites they are stored in a field. authored by ickshonpe
Investigate static tree marking for optimizing transform propagation authored by alice-i-cecile
Simplify on_replace relations hook authored by alice-i-cecile
Reduce usage of `PrimaryWindow` authored by madsmtm
Weird compute shader behavior on apple silicon. authored by Sigma-dev
`bevy_input` is now optional, but there's no way to enable it authored by rparrett
`AsBindGroup` error: the trait bound `bool: ShaderSize` is not satisfied authored by lomirus
CustomCursor Does Not Work On Linux authored by the-pink-hacker
More geometrically-accurate smooth normals. authored by Waridley
Unexpected behavior using `States` and `Event`s authored by TheGrungringMachine
Document how to access render adapter info authored by alice-i-cecile
Restructure rendering crates authored by superdump
Reflection - Add a way to register or modify `RequiredComponents` for a component whose type you don't know authored by makspll
`Scene::write_to_world_with` multiple times with previously existing entities leads to inconsistent relationships. authored by andriyDev
Tracking issue: supporting work for in-repo release notes / migration guides authored by alice-i-cecile
add a CI job to do basic format validation on the files inside of these folders authored by alice-i-cecile
add a job which checks for the labels and blocks the PR if no file in the correct folder is merged authored by alice-i-cecile
Increase structure for schedule executors to reduce boilerplate and ensure consistency authored by alice-i-cecile
Spawning related entities in an `OnAdd` observer downstream of a `World::spawn` in a `Command` causes a crash authored by Jaso333
create a CI job that checks for new or edited migration guides and automatically labels the PR authored by alice-i-cecile
generate the release notes and migration guides using a modified version of [the tooling](https://github.com/bevyengine/bevy-website/tree/main/generate-release) one last time for 0.16 authored by alice-i-cecile
Relationship annotation does not allow more than additional field authored by jesse3339
Deferred rendering example is broken on macos (`0.16-dev`) authored by aloucks
Shader compilation error with `webgpu` only in debug builds authored by rparrett
`file_watcher` feature does not work correctly authored by eckz
Assets are not extracted for rendering under certain conditions authored by DiSaber
`build-wasm-example` should have an option for debug builds authored by rparrett
Bevy on nintendo 3ds authored by homebrewmellow
mesh_picking behaves erratically in `0.16-dev` authored by aloucks
0.16 rc1 - No way to turn on bevy_math/curve through the bevy crate authored by NiklasEi
Send events from the render world to the main world authored by IceSentry
Multiple `FixedUpdate` schedules with different `Time`s? authored by simbleau