bevy/examples/startup_system.rs

49 lines
1.7 KiB
Rust
Raw Normal View History

2020-03-22 05:35:57 +00:00
use bevy::prelude::*;
fn main() {
2020-04-04 19:43:16 +00:00
App::build()
.add_default_plugins()
2020-04-06 08:57:00 +00:00
.add_startup_system(startup_system())
2020-04-04 19:43:16 +00:00
.run();
2020-03-22 05:35:57 +00:00
}
/// Set up a simple scene using a "startup system".
/// Startup systems are run exactly once when the app starts up.
/// They run right before "normal" systems run.
2020-04-06 08:57:00 +00:00
pub fn startup_system() -> Box<dyn Schedulable> {
SystemBuilder::new("startup")
2020-03-22 05:35:57 +00:00
.write_resource::<AssetStorage<Mesh>>()
.write_resource::<AssetStorage<StandardMaterial>>()
.build(move |command_buffer, _, (meshes, materials), _| {
let cube_handle = meshes.add(Mesh::from(shape::Cube));
2020-03-22 05:35:57 +00:00
let cube_material_handle = materials.add(StandardMaterial {
albedo: Color::rgb(0.5, 0.4, 0.3),
..Default::default()
});
2020-03-22 10:06:47 +00:00
2020-03-22 05:35:57 +00:00
command_buffer
.build()
// cube
.add_entity(MeshEntity {
mesh: cube_handle,
material: cube_material_handle,
2020-03-30 22:44:29 +00:00
translation: Translation::new(0.0, 0.0, 0.0),
2020-03-22 05:35:57 +00:00
..Default::default()
})
// light
.add_entity(LightEntity {
translation: Translation::new(4.0, -4.0, 5.0),
..Default::default()
})
// camera
.add_entity(CameraEntity {
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),
)),
..Default::default()
});
2020-03-22 05:35:57 +00:00
})
2020-03-22 10:06:47 +00:00
}