2020-01-14 03:20:58 +00:00
|
|
|
use bevy::prelude::*;
|
2020-01-11 09:46:51 +00:00
|
|
|
|
|
|
|
fn main() {
|
2020-04-16 02:40:24 +00:00
|
|
|
App::build()
|
|
|
|
.add_default_plugins()
|
2020-05-14 00:31:56 +00:00
|
|
|
.add_startup_system(setup.system())
|
2020-04-16 02:40:24 +00:00
|
|
|
.run();
|
2020-01-11 09:46:51 +00:00
|
|
|
}
|
|
|
|
|
2020-05-14 00:31:56 +00:00
|
|
|
fn setup(
|
2020-07-10 04:18:35 +00:00
|
|
|
mut commands: Commands,
|
2020-05-23 00:07:14 +00:00
|
|
|
asset_server: Res<AssetServer>,
|
2020-05-14 00:52:47 +00:00
|
|
|
mut textures: ResMut<Assets<Texture>>,
|
|
|
|
mut materials: ResMut<Assets<ColorMaterial>>,
|
2020-05-14 00:31:56 +00:00
|
|
|
) {
|
2020-07-25 06:04:45 +00:00
|
|
|
// let texture_handle = asset_server
|
|
|
|
// .load_sync(&mut textures, "assets/branding/bevy_logo_dark_big.png")
|
|
|
|
// .unwrap();
|
2020-05-23 00:07:14 +00:00
|
|
|
|
2020-07-25 06:04:45 +00:00
|
|
|
// let texture = textures.get(&texture_handle).unwrap();
|
|
|
|
// let aspect = texture.aspect();
|
2020-05-04 06:49:45 +00:00
|
|
|
|
2020-07-10 04:18:35 +00:00
|
|
|
commands
|
2020-05-30 05:30:07 +00:00
|
|
|
// ui camera
|
2020-07-25 06:04:45 +00:00
|
|
|
.spawn(UiCameraComponents::default())
|
2020-06-25 20:19:17 +00:00
|
|
|
// root node
|
2020-07-18 21:08:46 +00:00
|
|
|
.spawn(NodeComponents {
|
2020-07-25 06:04:45 +00:00
|
|
|
flex: Flex {
|
|
|
|
size: Size {
|
|
|
|
width: Dimension::Percent(1.0),
|
|
|
|
height: Dimension::Percent(1.0),
|
|
|
|
},
|
|
|
|
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-03-09 09:00:59 +00:00
|
|
|
})
|
2020-07-10 04:18:35 +00:00
|
|
|
.with_children(|parent| {
|
|
|
|
parent
|
2020-06-25 20:19:17 +00:00
|
|
|
// left vertical fill
|
2020-07-18 21:08:46 +00:00
|
|
|
.spawn(NodeComponents {
|
2020-07-25 06:04:45 +00:00
|
|
|
flex: Flex {
|
|
|
|
size: Size {
|
|
|
|
width: Dimension::Points(200.0),
|
|
|
|
height: Dimension::Percent(1.0),
|
|
|
|
},
|
|
|
|
border: Rect {
|
|
|
|
start: Dimension::Points(10.0),
|
|
|
|
end: Dimension::Points(10.0),
|
|
|
|
top: Dimension::Points(10.0),
|
|
|
|
bottom: Dimension::Points(10.0),
|
|
|
|
},
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
material: materials.add(Color::rgb(0.02, 0.02, 0.8).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
|
|
|
|
.spawn(NodeComponents {
|
|
|
|
flex: Flex {
|
|
|
|
size: Size {
|
|
|
|
width: Dimension::Percent(1.0),
|
|
|
|
height: Dimension::Percent(1.0),
|
|
|
|
},
|
|
|
|
border: Rect {
|
|
|
|
bottom: Dimension::Points(5.0),
|
|
|
|
start: Dimension::Points(5.0),
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
align_items: AlignItems::FlexEnd,
|
2020-07-19 00:03:37 +00:00
|
|
|
..Default::default()
|
2020-06-25 20:19:17 +00:00
|
|
|
},
|
2020-07-25 06:04:45 +00:00
|
|
|
material: materials.add(Color::rgb(0.8, 0.02, 0.02).into()),
|
|
|
|
..Default::default()
|
|
|
|
})
|
|
|
|
.with_children(|parent| {
|
|
|
|
parent.spawn(TextComponents {
|
|
|
|
flex: Flex {
|
|
|
|
size: Size {
|
|
|
|
width: Dimension::Points(100.0),
|
|
|
|
height: Dimension::Points(30.0),
|
|
|
|
},
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
text: Text {
|
|
|
|
value: "Text Example".to_string(),
|
|
|
|
font: asset_server
|
|
|
|
.load("assets/fonts/FiraSans-Bold.ttf")
|
|
|
|
.unwrap(),
|
|
|
|
style: TextStyle {
|
|
|
|
font_size: 30.0,
|
|
|
|
color: Color::WHITE,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
},
|
|
|
|
..Default::default()
|
|
|
|
});
|
|
|
|
});
|
2020-06-25 20:19:17 +00:00
|
|
|
})
|
|
|
|
// right vertical fill
|
2020-07-18 21:08:46 +00:00
|
|
|
.spawn(NodeComponents {
|
2020-07-25 06:04:45 +00:00
|
|
|
flex: Flex {
|
|
|
|
size: Size {
|
|
|
|
width: Dimension::Points(100.0),
|
|
|
|
height: Dimension::Percent(1.0),
|
|
|
|
},
|
|
|
|
border: Rect {
|
|
|
|
start: Dimension::Points(10.0),
|
|
|
|
end: Dimension::Points(10.0),
|
|
|
|
top: Dimension::Points(10.0),
|
|
|
|
bottom: Dimension::Points(10.0),
|
|
|
|
},
|
2020-07-20 03:33:55 +00:00
|
|
|
..Default::default()
|
|
|
|
},
|
2020-07-25 06:04:45 +00:00
|
|
|
material: materials.add(Color::rgb(0.02, 0.02, 0.02).into()),
|
2020-06-25 20:19:17 +00:00
|
|
|
..Default::default()
|
2020-07-10 04:18:35 +00:00
|
|
|
});
|
2020-07-25 06:04:45 +00:00
|
|
|
|
|
|
|
// // left vertical fill
|
|
|
|
|
|
|
|
// .spawn(NodeComponents {
|
|
|
|
// flex: Flex {
|
|
|
|
// size: Size {
|
|
|
|
// width: Dimension::Percent(0.20),
|
|
|
|
// height: Dimension::Percent(0.20),
|
|
|
|
// },
|
|
|
|
// justify_content: JustifyContent::FlexEnd,
|
|
|
|
// align_items: AlignItems::FlexEnd,
|
|
|
|
// ..Default::default()
|
|
|
|
// },
|
|
|
|
// material: materials.add(Color::rgb(0.02, 0.8, 0.02).into()),
|
|
|
|
// ..Default::default()
|
|
|
|
// })
|
|
|
|
// .with_children(|parent| {
|
|
|
|
// parent.spawn(NodeComponents {
|
|
|
|
// flex: Flex {
|
|
|
|
// size: Size {
|
|
|
|
// width: Dimension::Percent(0.50),
|
|
|
|
// height: Dimension::Percent(0.50),
|
|
|
|
// },
|
|
|
|
// justify_content: JustifyContent::FlexEnd,
|
|
|
|
// align_items: AlignItems::FlexEnd,
|
|
|
|
// ..Default::default()
|
|
|
|
// },
|
|
|
|
// material: materials.add(Color::rgb(0.8, 0.02, 0.02).into()),
|
|
|
|
// ..Default::default()
|
|
|
|
// });
|
|
|
|
// });
|
|
|
|
// // right vertical fill
|
|
|
|
// .spawn(NodeComponents {
|
|
|
|
// node: Node::new(Anchors::RIGHT_FULL, Margins::new(10.0, 100.0, 100.0, 100.0)),
|
|
|
|
// material: materials.add(Color::rgb(0.02, 0.02, 0.02).into()),
|
|
|
|
// ..Default::default()
|
|
|
|
// })
|
|
|
|
// // render order test: reddest in the back, whitest in the front
|
|
|
|
// .spawn(NodeComponents {
|
|
|
|
// node: Node::positioned(
|
|
|
|
// Vec2::new(75.0, 60.0),
|
|
|
|
// Anchors::CENTER,
|
|
|
|
// Margins::new(0.0, 100.0, 0.0, 100.0),
|
|
|
|
// ),
|
|
|
|
// material: materials.add(Color::rgb(1.0, 0.0, 0.0).into()),
|
|
|
|
// ..Default::default()
|
|
|
|
// })
|
|
|
|
// .spawn(NodeComponents {
|
|
|
|
// node: Node::positioned(
|
|
|
|
// Vec2::new(50.0, 35.0),
|
|
|
|
// Anchors::CENTER,
|
|
|
|
// Margins::new(0.0, 100.0, 0.0, 100.0),
|
|
|
|
// ),
|
|
|
|
// material: materials.add(Color::rgb(1.0, 0.3, 0.3).into()),
|
|
|
|
// ..Default::default()
|
|
|
|
// })
|
|
|
|
// .spawn(NodeComponents {
|
|
|
|
// node: Node::positioned(
|
|
|
|
// Vec2::new(100.0, 85.0),
|
|
|
|
// Anchors::CENTER,
|
|
|
|
// Margins::new(0.0, 100.0, 0.0, 100.0),
|
|
|
|
// ),
|
|
|
|
// material: materials.add(Color::rgb(1.0, 0.5, 0.5).into()),
|
|
|
|
// ..Default::default()
|
|
|
|
// })
|
|
|
|
// .spawn(NodeComponents {
|
|
|
|
// node: Node::positioned(
|
|
|
|
// Vec2::new(150.0, 135.0),
|
|
|
|
// Anchors::CENTER,
|
|
|
|
// Margins::new(0.0, 100.0, 0.0, 100.0),
|
|
|
|
// ),
|
|
|
|
// material: materials.add(Color::rgb(1.0, 0.7, 0.7).into()),
|
|
|
|
// ..Default::default()
|
|
|
|
// })
|
|
|
|
// // parenting
|
|
|
|
// .spawn(NodeComponents {
|
|
|
|
// node: Node::positioned(
|
|
|
|
// Vec2::new(210.0, 0.0),
|
|
|
|
// Anchors::BOTTOM_LEFT,
|
|
|
|
// Margins::new(0.0, 200.0, 10.0, 210.0),
|
|
|
|
// ),
|
|
|
|
// material: materials.add(Color::rgb(0.1, 0.1, 1.0).into()),
|
|
|
|
// ..Default::default()
|
|
|
|
// })
|
|
|
|
// .with_children(|parent| {
|
|
|
|
// parent.spawn(NodeComponents {
|
|
|
|
// node: Node::new(Anchors::FULL, Margins::new(20.0, 20.0, 20.0, 20.0)),
|
|
|
|
// material: materials.add(Color::rgb(0.6, 0.6, 1.0).into()),
|
|
|
|
// ..Default::default()
|
|
|
|
// });
|
|
|
|
// })
|
|
|
|
// // alpha test
|
|
|
|
// .spawn(NodeComponents {
|
|
|
|
// node: Node::positioned(
|
|
|
|
// Vec2::new(200.0, 185.0),
|
|
|
|
// Anchors::CENTER,
|
|
|
|
// Margins::new(0.0, 100.0, 0.0, 100.0),
|
|
|
|
// ),
|
|
|
|
// material: materials.add(Color::rgba(1.0, 0.9, 0.9, 0.4).into()),
|
|
|
|
// draw: Draw {
|
|
|
|
// is_transparent: true,
|
|
|
|
// ..Default::default()
|
|
|
|
// },
|
|
|
|
// ..Default::default()
|
|
|
|
// })
|
|
|
|
// // texture
|
|
|
|
// .spawn(NodeComponents {
|
|
|
|
// node: Node::new(
|
|
|
|
// Anchors::CENTER_TOP,
|
|
|
|
// Margins::new(-250.0, 250.0, 510.0 * aspect, 10.0),
|
|
|
|
// ),
|
|
|
|
// material: materials.add(ColorMaterial::texture(texture_handle)),
|
|
|
|
// draw: Draw {
|
|
|
|
// is_transparent: true,
|
|
|
|
// ..Default::default()
|
|
|
|
// },
|
|
|
|
// ..Default::default()
|
|
|
|
// });
|
|
|
|
})
|
|
|
|
.spawn(NodeComponents {
|
|
|
|
material: materials.add(Color::rgb(1.0, 0.0, 0.0).into()),
|
|
|
|
..Default::default()
|
2020-07-26 19:10:18 +00:00
|
|
|
});
|
2020-01-11 09:59:39 +00:00
|
|
|
}
|