rename assets/restricted/ to assets/tmp/
This commit is contained in:
parent
0506e773b8
commit
2e4dbe4844
|
@ -14,7 +14,7 @@ pub fn setup(
|
|||
mut commands: Commands,
|
||||
asset_server: Res<AssetServer>,
|
||||
) {
|
||||
let bgm = SoundBGM(asset_server.load("restricted/FTL - Faster Than Light (2012) OST - 12 - Void (Explore)-edQw2yYXQJM.ogg"));
|
||||
let bgm = SoundBGM(asset_server.load("tmp/FTL - Faster Than Light (2012) OST - 12 - Void (Explore)-edQw2yYXQJM.ogg"));
|
||||
commands.spawn((
|
||||
AudioBundle {
|
||||
source: bgm.0.clone(),
|
||||
|
@ -32,7 +32,7 @@ pub fn setup(
|
|||
commands.spawn((
|
||||
ComponentThrusterSound,
|
||||
AudioBundle {
|
||||
source: asset_server.load("restricted/loopingthrust-95548.ogg"),
|
||||
source: asset_server.load("tmp/loopingthrust-95548.ogg"),
|
||||
settings: PlaybackSettings {
|
||||
mode: PlaybackMode::Loop,
|
||||
paused: true,
|
||||
|
|
|
@ -114,7 +114,7 @@ pub fn setup(
|
|||
rotation: Quat::from_rotation_y(-PI / 3.),
|
||||
scale: Vec3::splat(5.0),
|
||||
},
|
||||
scene: asset_server.load("restricted/alien.glb#Scene0"),
|
||||
scene: asset_server.load("tmp/alien.glb#Scene0"),
|
||||
..default()
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue