# Objective
- Spawning a scene is handled as a special case with a command `spawn_scene` that takes an handle but doesn't let you specify anything else. This is the only handle that works that way.
- Workaround for this have been to add the `spawn_scene` on `ChildBuilder` to be able to specify transform of parent, or to make the `SceneSpawner` available to be able to select entities from a scene by their instance id
## Solution
Add a bundle
```rust
pub struct SceneBundle {
pub scene: Handle<Scene>,
pub transform: Transform,
pub global_transform: GlobalTransform,
pub instance_id: Option<InstanceId>,
}
```
and instead of
```rust
commands.spawn_scene(asset_server.load("models/FlightHelmet/FlightHelmet.gltf#Scene0"));
```
you can do
```rust
commands.spawn_bundle(SceneBundle {
scene: asset_server.load("models/FlightHelmet/FlightHelmet.gltf#Scene0"),
..Default::default()
});
```
The scene will be spawned as a child of the entity with the `SceneBundle`
~I would like to remove the command `spawn_scene` in favor of this bundle but didn't do it yet to get feedback first~
Co-authored-by: François <8672791+mockersf@users.noreply.github.com>
Co-authored-by: Carter Anderson <mcanders1@gmail.com>
42 lines
1.3 KiB
Rust
42 lines
1.3 KiB
Rust
//! Hot reloading allows you to modify assets files to be immediately reloaded while your game is
|
|
//! running. This lets you immediately see the results of your changes without restarting the game.
|
|
//! This example illustrates hot reloading mesh changes.
|
|
|
|
use bevy::{asset::AssetServerSettings, prelude::*};
|
|
|
|
fn main() {
|
|
App::new()
|
|
// Tell the asset server to watch for asset changes on disk:
|
|
.insert_resource(AssetServerSettings {
|
|
watch_for_changes: true,
|
|
..default()
|
|
})
|
|
.add_plugins(DefaultPlugins)
|
|
.add_startup_system(setup)
|
|
.run();
|
|
}
|
|
|
|
fn setup(mut commands: Commands, asset_server: Res<AssetServer>) {
|
|
// Load our mesh:
|
|
let scene_handle = asset_server.load("models/monkey/Monkey.gltf#Scene0");
|
|
|
|
// 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.
|
|
|
|
// mesh
|
|
commands.spawn_bundle(SceneBundle {
|
|
scene: scene_handle,
|
|
..default()
|
|
});
|
|
// light
|
|
commands.spawn_bundle(PointLightBundle {
|
|
transform: Transform::from_xyz(4.0, 5.0, 4.0),
|
|
..default()
|
|
});
|
|
// camera
|
|
commands.spawn_bundle(Camera3dBundle {
|
|
transform: Transform::from_xyz(2.0, 2.0, 6.0).looking_at(Vec3::ZERO, Vec3::Y),
|
|
..default()
|
|
});
|
|
}
|