rename assets/restricted/ to assets/tmp/

This commit is contained in:
yuni 2024-03-17 20:28:23 +01:00
parent 0506e773b8
commit 2e4dbe4844
2 changed files with 3 additions and 3 deletions

View file

@ -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,

View file

@ -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()
});