2020-05-17 03:18:30 +00:00
|
|
|
use bevy::prelude::*;
|
|
|
|
|
|
|
|
/// Hot reloading allows you to modify assets on disk and they will be "live reloaded" while your game is running.
|
|
|
|
/// This lets you immediately see the results of your changes without restarting the game.
|
|
|
|
fn main() {
|
|
|
|
App::build()
|
|
|
|
.add_default_plugins()
|
|
|
|
.add_startup_system(setup.system())
|
|
|
|
.run();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn setup(
|
2020-05-30 05:07:55 +00:00
|
|
|
asset_server: Res<AssetServer>,
|
2020-05-17 03:18:30 +00:00
|
|
|
mut materials: ResMut<Assets<StandardMaterial>>,
|
2020-06-27 17:18:27 +00:00
|
|
|
command_buffer: &mut CommandBuffer,
|
2020-05-17 03:18:30 +00:00
|
|
|
) {
|
2020-05-30 05:07:55 +00:00
|
|
|
// Load our mesh:
|
|
|
|
let mesh_handle = asset_server
|
|
|
|
.load("assets/models/monkey/Monkey.gltf")
|
|
|
|
.unwrap();
|
2020-05-17 03:18:30 +00:00
|
|
|
|
2020-05-17 17:29:42 +00:00
|
|
|
// Tell the asset server to watch for asset changes on disk:
|
2020-05-17 03:18:30 +00:00
|
|
|
asset_server.watch_for_changes().unwrap();
|
|
|
|
|
2020-05-17 17:29:42 +00:00
|
|
|
// Any changes to the mesh will be reloaded automatically! Try making a change to Monkey.gltf.
|
|
|
|
// You should see the changes immediately show up in your app.
|
2020-05-17 03:18:30 +00:00
|
|
|
|
2020-05-17 17:29:42 +00:00
|
|
|
// Create a material for the mesh:
|
2020-05-17 03:18:30 +00:00
|
|
|
let material_handle = materials.add(StandardMaterial {
|
|
|
|
albedo: Color::rgb(0.5, 0.4, 0.3),
|
|
|
|
..Default::default()
|
|
|
|
});
|
|
|
|
|
2020-05-17 17:29:42 +00:00
|
|
|
// Add entities to the world:
|
2020-05-17 03:18:30 +00:00
|
|
|
command_buffer
|
|
|
|
.build()
|
|
|
|
// mesh
|
2020-06-25 18:21:56 +00:00
|
|
|
.entity_with(MeshComponents {
|
2020-05-17 03:18:30 +00:00
|
|
|
mesh: mesh_handle,
|
|
|
|
material: material_handle,
|
|
|
|
..Default::default()
|
|
|
|
})
|
|
|
|
// light
|
2020-06-25 18:21:56 +00:00
|
|
|
.entity_with(LightComponents {
|
2020-06-24 22:29:10 +00:00
|
|
|
translation: Translation::new(4.0, 5.0, 4.0),
|
2020-05-17 03:18:30 +00:00
|
|
|
..Default::default()
|
|
|
|
})
|
|
|
|
// camera
|
2020-06-25 18:21:56 +00:00
|
|
|
.entity_with(PerspectiveCameraComponents {
|
2020-06-24 02:15:05 +00:00
|
|
|
transform: Transform::new_sync_disabled(Mat4::face_toward(
|
2020-06-24 22:29:10 +00:00
|
|
|
Vec3::new(2.0, 2.0, 6.0),
|
2020-05-17 03:18:30 +00:00
|
|
|
Vec3::new(0.0, 0.0, 0.0),
|
2020-06-24 22:29:10 +00:00
|
|
|
Vec3::new(0.0, 1.0, 0.0),
|
2020-05-17 03:18:30 +00:00
|
|
|
)),
|
|
|
|
..Default::default()
|
|
|
|
});
|
|
|
|
}
|