---
title: "Bevy 0.15"
url: https://daily.dev/posts/bevy-0-15-miw7akjhm
source_url: https://bevy.org/news/bevy-0-15
type: article
source: "Bevy Engine"
published: 2026-08-23T12:24:07.722Z
updated: 2026-08-23T12:56:38.681Z
tags: ["aws", "game-development", "rust"]
reading_time: 121
upvotes: 0
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Bevy 0.15

**[Bevy Engine](https://daily.dev/sources/bevy)** · 121 min read · 0 upvotes · 0 comments

## Summary

Bevy 0.15 ships with 294 contributors and 1217 pull requests, introducing Required Components, a major rethink of entity spawning that deprecates all built-in bundles like SpriteBundle and NodeBundle. Other highlights include an entity picking/selection system adopted from bevy_mod_picking, generalized animation with masks and additive blending, the Bevy Remote Protocol for external tool integration, VBAO ambient occlusion, chromatic aberration post-processing, Order Independent Transparency, gamepads represented as entities, UI box shadows, and a switch to Cosmic Text for improved font shaping and bidirectional text support. A migration guide is provided for upgrading from 0.14.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://bevy.org/news/bevy-0-15>

## Questions this post answers

### What is the Required Components feature in Bevy 0.15 and how does it replace Bundles?

Required Components let a component declare via #[require(...)] which other components must accompany it, so inserting a component like Player automatically inserts its dependencies such as Team and Sprite, including transitively required components. This eliminates the need for separate Bundle structs, reduces boilerplate and API stutter, and is implemented so required components are inserted with no extra archetype changes or table moves.

_Developers upgrading engine internals like this can track breaking API changes on daily.dev._

### Are built-in Bevy bundles like SpriteBundle and NodeBundle removed in Bevy 0.15?

Built-in bundles such as SpriteBundle, NodeBundle, and PbrBundle are deprecated as of Bevy 0.15 in favor of Required Components, though the Bundle trait itself still exists and custom bundles remain usable alongside required components. Plugin and app developers are encouraged to port their own bundles to the new pattern, and a 0.14 to 0.15 migration guide documents the necessary changes.

_Teams planning a Bevy version bump can check daily.dev for the specifics before migrating._

### What changed for Bevy's virtual geometry (meshlet) feature in version 0.15?

GPUs must now support WgpuFeatures::SHADER_INT64_ATOMIC_MIN_MAX to use the meshlet feature, meaning older GPUs that worked in Bevy 0.14 may no longer be compatible. Existing MeshletMesh assets generated under Bevy 0.14 must be regenerated since they are incompatible with Bevy 0.15, and the feature remains experimental despite performance improvements.

_Following engine-specific hardware requirement shifts like this is easier with daily.dev._

---

Tags: [#aws](https://daily.dev/tags/aws), [#game-development](https://daily.dev/tags/game-development), [#rust](https://daily.dev/tags/rust)

[View this post on daily.dev](https://daily.dev/posts/bevy-0-15-miw7akjhm)
