bevy/examples/ui/ui.rs

159 lines
5.6 KiB
Rust
Raw Normal View History

2020-01-14 03:20:58 +00:00
use bevy::prelude::*;
fn main() {
App::build()
.add_default_plugins()
.add_startup_system(setup)
.run();
}
2020-03-09 06:19:07 +00:00
fn setup(world: &mut World, resources: &mut Resources) {
let mut mesh_storage = resources.get_mut::<AssetStorage<Mesh>>().unwrap();
let mut material_storage = resources
.get_mut::<AssetStorage<StandardMaterial>>()
.unwrap();
let cube_handle = mesh_storage.add(Mesh::from(shape::Cube));
let cube_material_handle = material_storage.add(StandardMaterial {
albedo: Color::rgb(0.5, 0.3, 0.3),
..Default::default()
});
2020-05-04 06:49:45 +00:00
let mut texture_storage = resources.get_mut::<AssetStorage<Texture>>().unwrap();
let texture_path = concat!(
env!("CARGO_MANIFEST_DIR"),
"/assets/branding/bevy_logo_dark_big.png"
);
let texture = Texture::load(TextureType::Png(texture_path.to_string()));
let aspect = texture.height as f32 / texture.width as f32;
let texture_handle = texture_storage.add(texture);
let mut color_materials = resources.get_mut::<AssetStorage<ColorMaterial>>().unwrap();
let blue_material_handle = color_materials.add(Color::rgb(0.6, 0.6, 1.0).into());
2020-02-18 02:36:31 +00:00
world
.build()
// cube
2020-03-09 09:02:17 +00:00
.add_entity(MeshEntity {
2020-02-24 07:50:44 +00:00
mesh: cube_handle,
material: cube_material_handle,
2020-02-18 02:36:31 +00:00
translation: Translation::new(0.0, 0.0, 1.0),
..Default::default()
})
// light
2020-03-09 09:02:17 +00:00
.add_entity(LightEntity {
2020-02-18 02:36:31 +00:00
translation: Translation::new(4.0, -4.0, 5.0),
2020-02-18 03:06:12 +00:00
..Default::default()
2020-02-18 02:36:31 +00:00
})
// 3d camera
2020-03-09 09:02:17 +00:00
.add_entity(CameraEntity {
2020-02-18 02:36:31 +00:00
local_to_world: LocalToWorld(Mat4::look_at_rh(
Vec3::new(3.0, 8.0, 5.0),
Vec3::new(0.0, 0.0, 0.0),
Vec3::new(0.0, 0.0, 1.0),
)),
2020-03-22 04:55:33 +00:00
..Default::default()
2020-02-18 02:36:31 +00:00
})
// 2d camera
2020-03-09 09:02:17 +00:00
.add_entity(Camera2dEntity {
2020-03-22 04:55:33 +00:00
..Default::default()
2020-02-18 02:36:31 +00:00
})
// bottom left anchor with vertical fill
2020-03-09 09:02:17 +00:00
.add_entity(UiEntity {
node: Node::new(
math::vec2(0.0, 0.0),
Anchors::new(0.0, 0.0, 0.0, 1.0),
Margins::new(10.0, 200.0, 10.0, 10.0),
),
2020-05-04 06:49:45 +00:00
material: color_materials.add(Color::rgb(0.02, 0.02, 0.02).into()),
2020-05-03 00:56:30 +00:00
..Default::default()
})
// top right anchor with vertical fill
2020-03-09 09:02:17 +00:00
.add_entity(UiEntity {
node: Node::new(
math::vec2(0.0, 0.0),
Anchors::new(1.0, 1.0, 0.0, 1.0),
Margins::new(10.0, 100.0, 50.0, 100.0),
),
2020-05-04 06:49:45 +00:00
material: color_materials.add(Color::rgb(0.02, 0.02, 0.02).into()),
2020-05-03 00:56:30 +00:00
..Default::default()
})
// render order test: reddest in the back, whitest in the front
2020-03-09 09:02:17 +00:00
.add_entity(UiEntity {
node: Node::new(
math::vec2(75.0, 75.0),
Anchors::new(0.5, 0.5, 0.5, 0.5),
Margins::new(0.0, 100.0, 0.0, 100.0),
),
2020-05-04 06:49:45 +00:00
material: color_materials.add(Color::rgb(1.0, 0.0, 0.0).into()),
2020-05-03 00:56:30 +00:00
..Default::default()
})
2020-03-09 09:02:17 +00:00
.add_entity(UiEntity {
node: Node::new(
math::vec2(50.0, 50.0),
Anchors::new(0.5, 0.5, 0.5, 0.5),
Margins::new(0.0, 100.0, 0.0, 100.0),
),
2020-05-04 06:49:45 +00:00
material: color_materials.add(Color::rgb(1.0, 0.3, 0.3).into()),
2020-05-03 00:56:30 +00:00
..Default::default()
})
2020-03-09 09:02:17 +00:00
.add_entity(UiEntity {
node: Node::new(
math::vec2(100.0, 100.0),
Anchors::new(0.5, 0.5, 0.5, 0.5),
Margins::new(0.0, 100.0, 0.0, 100.0),
),
2020-05-04 06:49:45 +00:00
material: color_materials.add(Color::rgb(1.0, 0.5, 0.5).into()),
2020-05-03 00:56:30 +00:00
..Default::default()
})
2020-03-09 09:02:17 +00:00
.add_entity(UiEntity {
node: Node::new(
math::vec2(150.0, 150.0),
Anchors::new(0.5, 0.5, 0.5, 0.5),
Margins::new(0.0, 100.0, 0.0, 100.0),
),
2020-05-04 06:49:45 +00:00
material: color_materials.add(Color::rgb(1.0, 0.7, 0.7).into()),
2020-05-03 00:56:30 +00:00
..Default::default()
})
// parenting
2020-03-09 09:02:17 +00:00
.add_entity(UiEntity {
node: Node::new(
2020-01-13 06:18:17 +00:00
math::vec2(300.0, 300.0),
Anchors::new(0.0, 0.0, 0.0, 0.0),
Margins::new(0.0, 200.0, 0.0, 200.0),
),
2020-05-04 06:49:45 +00:00
material: color_materials.add(Color::rgb(0.1, 0.1, 1.0).into()),
2020-05-03 00:56:30 +00:00
..Default::default()
})
2020-03-09 09:08:27 +00:00
.add_children(|builder| {
builder.add_entity(UiEntity {
node: Node::new(
math::vec2(0.0, 0.0),
Anchors::new(0.0, 1.0, 0.0, 1.0),
Margins::new(20.0, 20.0, 20.0, 20.0),
),
2020-05-04 06:49:45 +00:00
material: blue_material_handle,
2020-05-03 00:56:30 +00:00
..Default::default()
2020-04-07 20:25:01 +00:00
});
})
// alpha test
2020-03-09 09:02:17 +00:00
.add_entity(UiEntity {
node: Node::new(
math::vec2(200.0, 200.0),
Anchors::new(0.5, 0.5, 0.5, 0.5),
Margins::new(0.0, 100.0, 0.0, 100.0),
),
2020-05-04 06:49:45 +00:00
material: color_materials.add(Color::rgba(1.0, 0.9, 0.9, 0.4).into()),
..Default::default()
})
// texture
.add_entity(UiEntity {
node: Node::new(
math::vec2(400.0, 100.0),
Anchors::new(0.0, 0.0, 0.0, 0.0),
Margins::new(0.0, 500.0, 0.0, 500.0 * aspect),
),
material: color_materials.add(ColorMaterial::texture(texture_handle)),
2020-05-03 00:56:30 +00:00
..Default::default()
2020-04-07 20:25:01 +00:00
});
2020-01-11 09:59:39 +00:00
}