# Objective Yet another PR for migrating stuff to required components. This time, cameras! ## Solution As per the [selected proposal](https://hackmd.io/tsYID4CGRiWxzsgawzxG_g#Combined-Proposal-1-Selected), deprecate `Camera2dBundle` and `Camera3dBundle` in favor of `Camera2d` and `Camera3d`. Adding a `Camera` without `Camera2d` or `Camera3d` now logs a warning, as suggested by Cart [on Discord](https://discord.com/channels/691052431525675048/1264881140007702558/1291506402832945273). I would personally like cameras to work a bit differently and be split into a few more components, to avoid some footguns and confusing semantics, but that is more controversial, and shouldn't block this core migration. ## Testing I ran a few 2D and 3D examples, and tried cameras with and without render graphs. --- ## Migration Guide `Camera2dBundle` and `Camera3dBundle` have been deprecated in favor of `Camera2d` and `Camera3d`. Inserting them will now also insert the other components required by them automatically.
		
			
				
	
	
		
			92 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //! This example is used to test how transforms interact with alpha modes for [`Mesh2d`] entities with a [`MeshMaterial2d`].
 | |
| //! This makes sure the depth buffer is correctly being used for opaque and transparent 2d meshes
 | |
| 
 | |
| use bevy::{
 | |
|     color::palettes::css::{BLUE, GREEN, WHITE},
 | |
|     prelude::*,
 | |
|     sprite::AlphaMode2d,
 | |
| };
 | |
| 
 | |
| fn main() {
 | |
|     App::new()
 | |
|         .add_plugins(DefaultPlugins)
 | |
|         .add_systems(Startup, setup)
 | |
|         .run();
 | |
| }
 | |
| 
 | |
| fn setup(
 | |
|     mut commands: Commands,
 | |
|     asset_server: Res<AssetServer>,
 | |
|     mut meshes: ResMut<Assets<Mesh>>,
 | |
|     mut materials: ResMut<Assets<ColorMaterial>>,
 | |
| ) {
 | |
|     commands.spawn(Camera2d);
 | |
| 
 | |
|     let texture_handle = asset_server.load("branding/icon.png");
 | |
|     let mesh_handle = meshes.add(Rectangle::from_size(Vec2::splat(256.0)));
 | |
| 
 | |
|     // opaque
 | |
|     // Each sprite should be square with the transparent parts being completely black
 | |
|     // The blue sprite should be on top with the white and green one behind it
 | |
|     commands.spawn((
 | |
|         Mesh2d(mesh_handle.clone()),
 | |
|         MeshMaterial2d(materials.add(ColorMaterial {
 | |
|             color: WHITE.into(),
 | |
|             alpha_mode: AlphaMode2d::Opaque,
 | |
|             texture: Some(texture_handle.clone()),
 | |
|         })),
 | |
|         Transform::from_xyz(-400.0, 0.0, 0.0),
 | |
|     ));
 | |
|     commands.spawn((
 | |
|         Mesh2d(mesh_handle.clone()),
 | |
|         MeshMaterial2d(materials.add(ColorMaterial {
 | |
|             color: BLUE.into(),
 | |
|             alpha_mode: AlphaMode2d::Opaque,
 | |
|             texture: Some(texture_handle.clone()),
 | |
|         })),
 | |
|         Transform::from_xyz(-300.0, 0.0, 1.0),
 | |
|     ));
 | |
|     commands.spawn((
 | |
|         Mesh2d(mesh_handle.clone()),
 | |
|         MeshMaterial2d(materials.add(ColorMaterial {
 | |
|             color: GREEN.into(),
 | |
|             alpha_mode: AlphaMode2d::Opaque,
 | |
|             texture: Some(texture_handle.clone()),
 | |
|         })),
 | |
|         Transform::from_xyz(-200.0, 0.0, -1.0),
 | |
|     ));
 | |
| 
 | |
|     // Test the interaction between opaque/mask and transparent meshes
 | |
|     // The white sprite should be:
 | |
|     // - only the icon is opaque but background is transparent
 | |
|     // - on top of the green sprite
 | |
|     // - behind the blue sprite
 | |
|     commands.spawn((
 | |
|         Mesh2d(mesh_handle.clone()),
 | |
|         MeshMaterial2d(materials.add(ColorMaterial {
 | |
|             color: WHITE.into(),
 | |
|             alpha_mode: AlphaMode2d::Mask(0.5),
 | |
|             texture: Some(texture_handle.clone()),
 | |
|         })),
 | |
|         Transform::from_xyz(200.0, 0.0, 0.0),
 | |
|     ));
 | |
|     commands.spawn((
 | |
|         Mesh2d(mesh_handle.clone()),
 | |
|         MeshMaterial2d(materials.add(ColorMaterial {
 | |
|             color: BLUE.with_alpha(0.7).into(),
 | |
|             alpha_mode: AlphaMode2d::Blend,
 | |
|             texture: Some(texture_handle.clone()),
 | |
|         })),
 | |
|         Transform::from_xyz(300.0, 0.0, 1.0),
 | |
|     ));
 | |
|     commands.spawn((
 | |
|         Mesh2d(mesh_handle.clone()),
 | |
|         MeshMaterial2d(materials.add(ColorMaterial {
 | |
|             color: GREEN.with_alpha(0.7).into(),
 | |
|             alpha_mode: AlphaMode2d::Blend,
 | |
|             texture: Some(texture_handle),
 | |
|         })),
 | |
|         Transform::from_xyz(400.0, 0.0, -1.0),
 | |
|     ));
 | |
| }
 |