bevy/examples/ui.rs

157 lines
4.2 KiB
Rust
Raw Normal View History

2020-01-14 03:20:58 +00:00
use bevy::prelude::*;
fn main() {
2020-02-18 02:36:31 +00:00
AppBuilder::new().add_defaults().setup_world(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 cube_handle = mesh_storage.add(Mesh::load(MeshType::Cube));
2020-02-18 02:36:31 +00:00
world
.build()
// cube
2020-02-18 03:06:12 +00:00
.add_archetype(MeshEntity {
2020-02-24 07:50:44 +00:00
mesh: cube_handle,
2020-02-18 02:36:31 +00:00
material: StandardMaterial {
albedo: math::vec4(0.5, 0.3, 0.3, 1.0).into(),
2020-02-18 02:36:31 +00:00
},
translation: Translation::new(0.0, 0.0, 1.0),
..Default::default()
})
// light
.add_archetype(LightEntity {
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
.add_archetype(CameraEntity {
camera: Camera::new(CameraType::Projection {
fov: std::f32::consts::PI / 4.0,
near: 1.0,
far: 1000.0,
aspect_ratio: 1.0,
}),
active_camera: ActiveCamera,
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),
)),
})
// 2d camera
.add_archetype(Camera2dEntity {
camera: Camera::new(CameraType::Orthographic {
2020-01-13 06:18:17 +00:00
left: 0.0,
right: 0.0,
bottom: 0.0,
top: 0.0,
near: 0.0,
far: 1.0,
}),
2020-02-18 02:36:31 +00:00
active_camera_2d: ActiveCamera2d,
})
.build();
2020-01-13 02:47:17 +00:00
// bottom left anchor with vertical fill
2020-01-11 09:59:39 +00:00
world.insert(
(),
2020-01-13 00:51:21 +00:00
vec![(Node::new(
math::vec2(0.0, 0.0),
Anchors::new(0.0, 0.0, 0.0, 1.0),
2020-01-13 02:00:58 +00:00
Margins::new(10.0, 200.0, 10.0, 10.0),
math::vec4(0.1, 0.1, 0.1, 1.0),
),)],
);
2020-01-13 02:47:17 +00:00
// top right anchor with vertical fill
2020-01-13 02:00:58 +00:00
world.insert(
(),
vec![(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),
math::vec4(0.1, 0.1, 0.1, 1.0),
2020-01-13 00:51:21 +00:00
),)],
2020-01-11 09:59:39 +00:00
);
2020-01-13 02:47:17 +00:00
// render order test: reddest in the back, whitest in the front
2020-01-11 09:59:39 +00:00
world.insert(
(),
2020-01-13 00:51:21 +00:00
vec![(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),
math::vec4(1.0, 0.1, 0.1, 1.0),
),)],
2020-01-11 09:59:39 +00:00
);
2020-01-11 09:59:39 +00:00
world.insert(
(),
2020-01-13 00:51:21 +00:00
vec![(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),
math::vec4(1.0, 0.3, 0.3, 1.0),
),)],
);
world.insert(
(),
vec![(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),
math::vec4(1.0, 0.5, 0.5, 1.0),
),)],
2020-01-11 09:59:39 +00:00
);
2020-01-13 02:00:58 +00:00
world.insert(
(),
vec![(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),
math::vec4(1.0, 0.7, 0.7, 1.0),
),)],
);
2020-01-13 06:18:17 +00:00
// parenting
let parent = *world
.insert(
(),
vec![(Node::new(
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),
math::vec4(0.1, 0.1, 1.0, 1.0),
),)],
)
.first()
.unwrap();
world.insert(
(),
vec![(
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),
math::vec4(0.6, 0.6, 1.0, 1.0),
),
Parent(parent),
)],
);
2020-01-13 09:32:04 +00:00
// alpha test
world.insert(
(),
vec![(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-01-13 10:14:10 +00:00
math::vec4(1.0, 0.9, 0.9, 0.4),
2020-01-13 09:32:04 +00:00
),)],
);
2020-01-11 09:59:39 +00:00
}