bevy/examples/3d/parenting.rs

64 lines
1.9 KiB
Rust
Raw Normal View History

2020-01-14 03:20:58 +00:00
use bevy::prelude::*;
struct Rotator;
fn main() {
App::build()
.add_default_plugins()
2020-05-14 00:31:56 +00:00
.add_startup_system(setup.system())
.add_system(rotator_system.system())
.run();
}
/// rotates the parent, which will result in the child also rotating
2020-05-14 00:52:47 +00:00
fn rotator_system(time: Res<Time>, _rotator: ComMut<Rotator>, mut rotation: ComMut<Rotation>) {
rotation.0 = rotation.0 * Quat::from_rotation_x(3.0 * time.delta_seconds);
}
/// set up a simple scene with a "parent" cube and a "child" cube
2020-05-14 00:31:56 +00:00
fn setup(
command_buffer: &mut CommandBuffer,
2020-05-14 00:52:47 +00:00
mut meshes: ResMut<Assets<Mesh>>,
mut materials: ResMut<Assets<StandardMaterial>>,
2020-05-14 00:31:56 +00:00
) {
2020-05-13 23:42:27 +00:00
let cube_handle = meshes.add(Mesh::from(shape::Cube));
2020-05-14 00:31:56 +00:00
let cube_material_handle = materials.add(StandardMaterial {
albedo: Color::rgb(0.5, 0.4, 0.3),
..Default::default()
});
2020-05-14 00:31:56 +00:00
command_buffer
.build()
// parent cube
2020-03-09 09:02:17 +00:00
.add_entity(MeshEntity {
mesh: cube_handle,
material: cube_material_handle,
translation: Translation::new(0.0, 0.0, 1.0),
..Default::default()
})
.add(Rotator)
2020-03-09 09:08:27 +00:00
.add_children(|builder| {
// child cube
2020-03-09 09:08:27 +00:00
builder.add_entity(MeshEntity {
mesh: cube_handle,
material: cube_material_handle,
translation: Translation::new(0.0, 0.0, 3.0),
..Default::default()
2020-05-14 00:31:56 +00:00
})
})
// light
2020-03-09 09:02:17 +00:00
.add_entity(LightEntity {
translation: Translation::new(4.0, -4.0, 5.0),
..Default::default()
})
// camera
2020-03-09 09:02:17 +00:00
.add_entity(CameraEntity {
local_to_world: LocalToWorld(Mat4::look_at_rh(
Vec3::new(5.0, 10.0, 10.0),
Vec3::new(0.0, 0.0, 0.0),
2020-01-11 09:59:39 +00:00
Vec3::new(0.0, 0.0, 1.0),
)),
2020-03-22 04:55:33 +00:00
..Default::default()
2020-04-07 20:25:01 +00:00
});
2020-01-11 09:59:39 +00:00
}