 de004da8d5
			
		
	
	
		de004da8d5
		
			
		
	
	
	
	
		
			
			# Objective The migration process for `bevy_color` (#12013) will be fairly involved: there will be hundreds of affected files, and a large number of APIs. ## Solution To allow us to proceed granularly, we're going to keep both `bevy_color::Color` (new) and `bevy_render::Color` (old) around until the migration is complete. However, simply doing this directly is confusing! They're both called `Color`, making it very hard to tell when a portion of the code has been ported. As discussed in #12056, by renaming the old `Color` type, we can make it easier to gradually migrate over, one API at a time. ## Migration Guide THIS MIGRATION GUIDE INTENTIONALLY LEFT BLANK. This change should not be shipped to end users: delete this section in the final migration guide! --------- Co-authored-by: Alice Cecile <alice.i.cecil@gmail.com>
		
			
				
	
	
		
			127 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			127 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //! Demonstrates how to use the z-index component on UI nodes to control their relative depth
 | |
| //!
 | |
| //! It uses colored boxes with different z-index values to demonstrate how it can affect the order of
 | |
| //! depth of nodes compared to their siblings, but also compared to the entire UI.
 | |
| 
 | |
| use bevy::prelude::*;
 | |
| 
 | |
| fn main() {
 | |
|     App::new()
 | |
|         .insert_resource(ClearColor(LegacyColor::BLACK))
 | |
|         .add_plugins(DefaultPlugins)
 | |
|         .add_systems(Startup, setup)
 | |
|         .run();
 | |
| }
 | |
| 
 | |
| fn setup(mut commands: Commands) {
 | |
|     commands.spawn(Camera2dBundle::default());
 | |
| 
 | |
|     // spawn the container with default z-index.
 | |
|     // the default z-index value is `ZIndex::Local(0)`.
 | |
|     // because this is a root UI node, using local or global values will do the same thing.
 | |
|     commands
 | |
|         .spawn(NodeBundle {
 | |
|             style: Style {
 | |
|                 width: Val::Percent(100.),
 | |
|                 height: Val::Percent(100.),
 | |
|                 align_items: AlignItems::Center,
 | |
|                 justify_content: JustifyContent::Center,
 | |
|                 ..default()
 | |
|             },
 | |
|             ..default()
 | |
|         })
 | |
|         .with_children(|parent| {
 | |
|             parent
 | |
|                 .spawn(NodeBundle {
 | |
|                     background_color: LegacyColor::GRAY.into(),
 | |
|                     style: Style {
 | |
|                         width: Val::Px(180.0),
 | |
|                         height: Val::Px(100.0),
 | |
|                         ..default()
 | |
|                     },
 | |
|                     ..default()
 | |
|                 })
 | |
|                 .with_children(|parent| {
 | |
|                     // spawn a node with default z-index.
 | |
|                     parent.spawn(NodeBundle {
 | |
|                         background_color: LegacyColor::RED.into(),
 | |
|                         style: Style {
 | |
|                             position_type: PositionType::Absolute,
 | |
|                             left: Val::Px(10.0),
 | |
|                             bottom: Val::Px(40.0),
 | |
|                             width: Val::Px(100.0),
 | |
|                             height: Val::Px(50.0),
 | |
|                             ..default()
 | |
|                         },
 | |
|                         ..default()
 | |
|                     });
 | |
| 
 | |
|                     // spawn a node with a positive local z-index of 2.
 | |
|                     // it will show above other nodes in the gray container.
 | |
|                     parent.spawn(NodeBundle {
 | |
|                         z_index: ZIndex::Local(2),
 | |
|                         background_color: LegacyColor::BLUE.into(),
 | |
|                         style: Style {
 | |
|                             position_type: PositionType::Absolute,
 | |
|                             left: Val::Px(45.0),
 | |
|                             bottom: Val::Px(30.0),
 | |
|                             width: Val::Px(100.),
 | |
|                             height: Val::Px(50.),
 | |
|                             ..default()
 | |
|                         },
 | |
|                         ..default()
 | |
|                     });
 | |
| 
 | |
|                     // spawn a node with a negative local z-index.
 | |
|                     // it will show under other nodes in the gray container.
 | |
|                     parent.spawn(NodeBundle {
 | |
|                         z_index: ZIndex::Local(-1),
 | |
|                         background_color: LegacyColor::GREEN.into(),
 | |
|                         style: Style {
 | |
|                             position_type: PositionType::Absolute,
 | |
|                             left: Val::Px(70.0),
 | |
|                             bottom: Val::Px(20.0),
 | |
|                             width: Val::Px(100.),
 | |
|                             height: Val::Px(75.),
 | |
|                             ..default()
 | |
|                         },
 | |
|                         ..default()
 | |
|                     });
 | |
| 
 | |
|                     // spawn a node with a positive global z-index of 1.
 | |
|                     // it will show above all other nodes, because it's the highest global z-index in this example.
 | |
|                     // by default, boxes all share the global z-index of 0 that the gray container is added to.
 | |
|                     parent.spawn(NodeBundle {
 | |
|                         z_index: ZIndex::Global(1),
 | |
|                         background_color: LegacyColor::PURPLE.into(),
 | |
|                         style: Style {
 | |
|                             position_type: PositionType::Absolute,
 | |
|                             left: Val::Px(15.0),
 | |
|                             bottom: Val::Px(10.0),
 | |
|                             width: Val::Px(100.),
 | |
|                             height: Val::Px(60.),
 | |
|                             ..default()
 | |
|                         },
 | |
|                         ..default()
 | |
|                     });
 | |
| 
 | |
|                     // spawn a node with a negative global z-index of -1.
 | |
|                     // this will show under all other nodes including its parent, because it's the lowest global z-index
 | |
|                     // in this example.
 | |
|                     parent.spawn(NodeBundle {
 | |
|                         z_index: ZIndex::Global(-1),
 | |
|                         background_color: LegacyColor::YELLOW.into(),
 | |
|                         style: Style {
 | |
|                             position_type: PositionType::Absolute,
 | |
|                             left: Val::Px(-15.0),
 | |
|                             bottom: Val::Px(-15.0),
 | |
|                             width: Val::Px(100.),
 | |
|                             height: Val::Px(125.),
 | |
|                             ..default()
 | |
|                         },
 | |
|                         ..default()
 | |
|                     });
 | |
|                 });
 | |
|         });
 | |
| }
 |