diff --git a/content/learn/migration-guides/0.11-0.12/_index.md b/content/learn/migration-guides/0.11-0.12/_index.md index f98c16fd3f..0b6595390b 100644 --- a/content/learn/migration-guides/0.11-0.12/_index.md +++ b/content/learn/migration-guides/0.11-0.12/_index.md @@ -1516,4 +1516,18 @@ fn vertex(vertex_no_morph: Vertex) -> VertexOutput { `&mut EventReader` does not implement `IntoIterator` anymore. replace `for foo in &mut events` by `for foo in events.iter()` +### [Update default `ClearColor`` to better match Bevy's branding](https://github.com/bevyengine/bevy/pull/10339) + +
+ +The default app background color has changed. To use the old default, add a `ClearColor` resource. + +```rust +App::new() + .insert_resource(ClearColor(Color::rgb(0.4, 0.4, 0.4))) + .add_plugins(DefaultPlugins) +``` +