bevy/examples/ui/ui.rs

232 lines
11 KiB
Rust
Raw Normal View History

2020-01-14 03:20:58 +00:00
use bevy::prelude::*;
2020-07-28 20:43:07 +00:00
/// This example illustrates the various features of Bevy UI.
fn main() {
App::build()
.add_plugin_group(DefaultPlugins)
2020-05-14 00:31:56 +00:00
.add_startup_system(setup.system())
.run();
}
2020-05-14 00:31:56 +00:00
fn setup(
2020-07-10 04:18:35 +00:00
mut commands: Commands,
asset_server: Res<AssetServer>,
2020-05-14 00:52:47 +00:00
mut materials: ResMut<Assets<ColorMaterial>>,
2020-05-14 00:31:56 +00:00
) {
2020-07-10 04:18:35 +00:00
commands
// ui camera
2020-07-25 06:04:45 +00:00
.spawn(UiCameraComponents::default())
2020-06-25 20:19:17 +00:00
// root node
.spawn(NodeComponents {
2020-07-26 19:27:09 +00:00
style: Style {
size: Size::new(Val::Percent(100.0), Val::Percent(100.0)),
2020-07-25 06:04:45 +00:00
justify_content: JustifyContent::SpaceBetween,
..Default::default()
},
2020-06-25 20:19:17 +00:00
material: materials.add(Color::NONE.into()),
2020-05-03 00:56:30 +00:00
..Default::default()
})
2020-07-10 04:18:35 +00:00
.with_children(|parent| {
parent
// left vertical fill (border)
.spawn(NodeComponents {
2020-07-26 19:27:09 +00:00
style: Style {
size: Size::new(Val::Px(200.0), Val::Percent(100.0)),
border: Rect::all(Val::Px(2.0)),
2020-07-25 06:04:45 +00:00
..Default::default()
},
2020-10-12 23:54:22 +00:00
material: materials.add(Color::rgb(0.65, 0.65, 0.65).into()),
2020-06-25 20:19:17 +00:00
..Default::default()
})
2020-07-10 04:18:35 +00:00
.with_children(|parent| {
2020-07-25 06:04:45 +00:00
parent
// left vertical fill (content)
2020-07-25 06:04:45 +00:00
.spawn(NodeComponents {
2020-07-26 19:27:09 +00:00
style: Style {
size: Size::new(Val::Percent(100.0), Val::Percent(100.0)),
2020-07-25 06:04:45 +00:00
align_items: AlignItems::FlexEnd,
..Default::default()
2020-06-25 20:19:17 +00:00
},
2020-10-12 23:54:22 +00:00
material: materials.add(Color::rgb(0.15, 0.15, 0.15).into()),
2020-07-25 06:04:45 +00:00
..Default::default()
})
.with_children(|parent| {
// text
2020-07-25 06:04:45 +00:00
parent.spawn(TextComponents {
2020-07-26 19:27:09 +00:00
style: Style {
margin: Rect::all(Val::Px(5.0)),
2020-07-25 06:04:45 +00:00
..Default::default()
},
text: Text {
value: "Text Example".to_string(),
font: asset_server.load("fonts/FiraSans-Bold.ttf"),
2020-07-25 06:04:45 +00:00
style: TextStyle {
font_size: 30.0,
color: Color::WHITE,
},
},
..Default::default()
});
});
2020-06-25 20:19:17 +00:00
})
// right vertical fill
.spawn(NodeComponents {
2020-07-26 19:27:09 +00:00
style: Style {
size: Size::new(Val::Px(200.0), Val::Percent(100.0)),
..Default::default()
},
2020-10-12 23:54:22 +00:00
material: materials.add(Color::rgb(0.15, 0.15, 0.15).into()),
2020-06-25 20:19:17 +00:00
..Default::default()
2020-07-26 19:27:09 +00:00
})
// absolute positioning
2020-07-26 19:27:09 +00:00
.spawn(NodeComponents {
style: Style {
size: Size::new(Val::Px(200.0), Val::Px(200.0)),
position_type: PositionType::Absolute,
position: Rect {
left: Val::Px(210.0),
2020-07-26 19:27:09 +00:00
bottom: Val::Px(10.0),
..Default::default()
2020-07-26 19:27:09 +00:00
},
border: Rect::all(Val::Px(20.0)),
2020-07-26 19:27:09 +00:00
..Default::default()
},
2020-10-12 23:54:22 +00:00
material: materials.add(Color::rgb(0.4, 0.4, 1.0).into()),
2020-07-26 19:27:09 +00:00
..Default::default()
})
.with_children(|parent| {
parent.spawn(NodeComponents {
style: Style {
size: Size::new(Val::Percent(100.0), Val::Percent(100.0)),
..Default::default()
},
2020-10-12 23:54:22 +00:00
material: materials.add(Color::rgb(0.8, 0.8, 1.0).into()),
..Default::default()
});
})
// render order test: reddest in the back, whitest in the front (flex center)
.spawn(NodeComponents {
style: Style {
size: Size::new(Val::Percent(100.0), Val::Percent(100.0)),
position_type: PositionType::Absolute,
align_items: AlignItems::Center,
justify_content: JustifyContent::Center,
..Default::default()
},
material: materials.add(Color::NONE.into()),
draw: Draw {
is_transparent: true,
..Default::default()
},
..Default::default()
})
.with_children(|parent| {
parent
.spawn(NodeComponents {
style: Style {
size: Size::new(Val::Px(100.0), Val::Px(100.0)),
..Default::default()
},
material: materials.add(Color::rgb(1.0, 0.0, 0.0).into()),
..Default::default()
})
.with_children(|parent| {
parent
.spawn(NodeComponents {
style: Style {
size: Size::new(Val::Px(100.0), Val::Px(100.0)),
position_type: PositionType::Absolute,
position: Rect {
left: Val::Px(20.0),
bottom: Val::Px(20.0),
..Default::default()
},
..Default::default()
},
material: materials.add(Color::rgb(1.0, 0.3, 0.3).into()),
..Default::default()
})
.spawn(NodeComponents {
style: Style {
size: Size::new(Val::Px(100.0), Val::Px(100.0)),
position_type: PositionType::Absolute,
position: Rect {
left: Val::Px(40.0),
bottom: Val::Px(40.0),
..Default::default()
},
..Default::default()
},
material: materials.add(Color::rgb(1.0, 0.5, 0.5).into()),
..Default::default()
})
.spawn(NodeComponents {
style: Style {
size: Size::new(Val::Px(100.0), Val::Px(100.0)),
position_type: PositionType::Absolute,
position: Rect {
left: Val::Px(60.0),
bottom: Val::Px(60.0),
..Default::default()
},
..Default::default()
},
material: materials.add(Color::rgb(1.0, 0.7, 0.7).into()),
..Default::default()
})
// alpha test
.spawn(NodeComponents {
style: Style {
size: Size::new(Val::Px(100.0), Val::Px(100.0)),
position_type: PositionType::Absolute,
position: Rect {
left: Val::Px(80.0),
bottom: Val::Px(80.0),
..Default::default()
},
..Default::default()
},
material: materials.add(Color::rgba(1.0, 0.9, 0.9, 0.4).into()),
draw: Draw {
is_transparent: true,
..Default::default()
},
..Default::default()
});
});
})
// bevy logo (flex center)
.spawn(NodeComponents {
style: Style {
size: Size::new(Val::Percent(100.0), Val::Percent(100.0)),
position_type: PositionType::Absolute,
justify_content: JustifyContent::Center,
align_items: AlignItems::FlexEnd,
..Default::default()
},
material: materials.add(Color::NONE.into()),
draw: Draw {
is_transparent: true,
..Default::default()
},
..Default::default()
})
.with_children(|parent| {
// bevy logo (image)
parent.spawn(ImageComponents {
style: Style {
size: Size::new(Val::Px(500.0), Val::Auto),
..Default::default()
},
material: materials
.add(asset_server.load("branding/bevy_logo_dark_big.png").into()),
draw: Draw {
is_transparent: true,
..Default::default()
},
..Default::default()
});
2020-07-10 04:18:35 +00:00
});
2020-07-26 19:10:18 +00:00
});
2020-01-11 09:59:39 +00:00
}