---
title: "Bevy 0.11"
url: https://daily.dev/posts/bevy-0-11-ca6czcryx
source_url: https://bevy.org/news/bevy-0-11
type: article
source: "Bevy Engine"
published: 2026-08-23T12:24:04.613Z
updated: 2026-08-23T12:56:38.022Z
tags: ["aws", "game-development", "rust", "webgpu"]
reading_time: 46
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.11

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

## Summary

Bevy 0.11 ships with 166 contributors and 522 pull requests, bringing major rendering upgrades: Screen Space Ambient Occlusion, Temporal Anti-Aliasing, Robust Contrast Adaptive Sharpening, morph target animation support, parallax mapping, and skybox rendering. WebGPU support expands, shader imports move to a naga_oil module-based system, and the ECS scheduling API is overhauled with Schedule-First APIs replacing confusing Base Sets. Additional highlights include UI borders, CSS-style grid layout, faster UI batching, reworked ECS-based audio APIs, gizmo immediate-mode rendering, gamepad rumble support, a new default tonemapping method (TonyMcMapface), stable TypePath, and numerous reflection and ergonomics improvements. A migration guide is provided for upgrading from 0.10.

## Full article

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

## Questions this post answers

### What are the main new rendering features in Bevy 0.11?

Bevy 0.11 adds Screen Space Ambient Occlusion (SSAO), Temporal Anti-Aliasing (TAA), Robust Contrast Adaptive Sharpening (RCAS), morph target animation, parallax mapping with depth maps, and built-in skybox support via a Skybox component. SSAO and TAA currently only work on Vulkan, DirectX12, and Metal, with WebGPU support planned later.

_Track engine releases like this on daily.dev when planning a Bevy rendering upgrade._

### How does Bevy 0.11 change the ECS system scheduling API compared to 0.10?

Bevy 0.11 introduces Schedule-First APIs, replacing the confusing Base Sets from 0.10 with a single add_systems(Schedule, systems) call. Base Sets like CoreSet::Update become plain schedules like Update, there is no more implicit default scheduling, and nested system tuples plus chain() now support arbitrary nesting for expressive ordering.

_Developers upgrading Bevy apps can check migration details like this on daily.dev before touching scheduler code._

### How do I play and control audio in Bevy 0.11 using the new ECS audio API?

Audio playback is represented as an Entity with an AudioBundle component instead of a Resource-based AudioSink handle. Spawn an entity with AudioBundle containing the loaded source and PlaybackSettings, then query for the AudioSink component to pause or otherwise control playback, using PlaybackMode variants Once, Loop, Despawn, or Remove to manage lifecycle.

_See changes like this on daily.dev before migrating audio code to a new Bevy version._

---

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

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