2020-01-13 19:20:58 -08:00
|
|
|
use bevy::prelude::*;
|
2019-12-02 15:19:56 -08:00
|
|
|
|
2019-11-12 19:36:02 -08:00
|
|
|
fn main() {
|
2020-04-15 19:40:24 -07:00
|
|
|
App::build()
|
|
|
|
.add_default_plugins()
|
|
|
|
.add_startup_system(setup)
|
|
|
|
.run();
|
2020-01-11 01:46:51 -08:00
|
|
|
}
|
2019-12-03 00:30:30 -08:00
|
|
|
|
2020-04-06 21:32:19 -07:00
|
|
|
/// set up a simple scene
|
2020-03-08 23:19:07 -07:00
|
|
|
fn setup(world: &mut World, resources: &mut Resources) {
|
2020-04-11 18:40:30 -07:00
|
|
|
env_logger::init();
|
2020-04-06 21:32:19 -07:00
|
|
|
// create a cube and a plane mesh
|
2020-03-09 01:40:04 -07:00
|
|
|
let mut mesh_storage = resources.get_mut::<AssetStorage<Mesh>>().unwrap();
|
2020-04-19 10:08:47 -07:00
|
|
|
let cube_handle = mesh_storage.add(Mesh::from(shape::Cube));
|
|
|
|
let plane_handle = mesh_storage.add(Mesh::from(shape::Plane { size: 10.0 }));
|
2020-04-06 21:32:19 -07:00
|
|
|
|
|
|
|
// create materials for our cube and plane
|
2020-03-16 00:45:28 -07:00
|
|
|
let mut material_storage = resources
|
|
|
|
.get_mut::<AssetStorage<StandardMaterial>>()
|
|
|
|
.unwrap();
|
|
|
|
let cube_material_handle = material_storage.add(StandardMaterial {
|
2020-03-17 22:02:01 -07:00
|
|
|
albedo: Color::rgb(0.5, 0.4, 0.3),
|
|
|
|
..Default::default()
|
2020-03-16 00:45:28 -07:00
|
|
|
});
|
|
|
|
let plane_material_handle = material_storage.add(StandardMaterial {
|
2020-03-17 22:02:01 -07:00
|
|
|
albedo: Color::rgb(0.1, 0.2, 0.1),
|
|
|
|
..Default::default()
|
2020-03-16 00:45:28 -07:00
|
|
|
});
|
2020-04-06 16:15:59 -07:00
|
|
|
|
2020-04-06 21:32:19 -07:00
|
|
|
// add entities to the world
|
2020-02-07 23:17:51 -08:00
|
|
|
world
|
|
|
|
.build()
|
2020-01-20 20:10:40 -08:00
|
|
|
// plane
|
2020-03-09 02:02:17 -07:00
|
|
|
.add_entity(MeshEntity {
|
2020-02-23 23:50:44 -08:00
|
|
|
mesh: plane_handle,
|
2020-03-16 00:45:28 -07:00
|
|
|
material: plane_material_handle,
|
2020-02-17 18:36:31 -08:00
|
|
|
..Default::default()
|
2020-01-20 20:10:40 -08:00
|
|
|
})
|
2020-02-18 09:16:34 -08:00
|
|
|
// cube
|
2020-03-09 02:02:17 -07:00
|
|
|
.add_entity(MeshEntity {
|
2020-02-23 23:50:44 -08:00
|
|
|
mesh: cube_handle,
|
2020-03-16 00:45:28 -07:00
|
|
|
material: cube_material_handle,
|
2020-04-06 17:03:21 -07:00
|
|
|
translation: Translation::new(0.0, 0.0, 1.0),
|
2020-02-17 18:36:31 -08:00
|
|
|
..Default::default()
|
|
|
|
})
|
2020-04-11 18:40:30 -07:00
|
|
|
// cube
|
|
|
|
.add_entity(MeshEntity {
|
|
|
|
mesh: cube_handle,
|
|
|
|
material: cube_material_handle,
|
|
|
|
translation: Translation::new(2.0, 0.0, 1.0),
|
|
|
|
..Default::default()
|
|
|
|
})
|
2020-01-20 20:10:40 -08:00
|
|
|
// light
|
2020-03-09 02:02:17 -07:00
|
|
|
.add_entity(LightEntity {
|
2020-01-20 20:10:40 -08:00
|
|
|
translation: Translation::new(4.0, -4.0, 5.0),
|
2020-02-17 19:06:12 -08:00
|
|
|
..Default::default()
|
2020-01-20 20:10:40 -08:00
|
|
|
})
|
|
|
|
// camera
|
2020-03-09 02:02:17 -07:00
|
|
|
.add_entity(CameraEntity {
|
2020-01-20 20:10:40 -08:00
|
|
|
local_to_world: LocalToWorld(Mat4::look_at_rh(
|
2020-01-12 22:26:07 -08:00
|
|
|
Vec3::new(3.0, 8.0, 5.0),
|
2019-12-04 00:11:14 -08:00
|
|
|
Vec3::new(0.0, 0.0, 0.0),
|
2020-01-11 01:59:39 -08:00
|
|
|
Vec3::new(0.0, 0.0, 1.0),
|
|
|
|
)),
|
2020-03-21 21:55:33 -07:00
|
|
|
..Default::default()
|
2020-04-07 13:25:01 -07:00
|
|
|
});
|
2020-01-11 01:59:39 -08:00
|
|
|
}
|