This commit is contained in:
AmadeusWM
2025-04-06 22:48:57 +02:00
parent 2aa48b191e
commit 5d7df7b650

View File

@@ -30,8 +30,8 @@ fn main() {
.init_state::<GameState>()
.insert_resource(AmbientLight {
color: Color::srgba(0.8, 0.8, 1.0, 1.0),
// brightness: 11.0,
brightness: 80.0,
brightness: 11.0,
// brightness: 80.0,
})
.add_systems(OnEnter(GameState::Playing), setup)
.add_systems(OnEnter(GameState::Menu), play_song)
@@ -94,4 +94,4 @@ fn stop_song(
audio: Res<Audio>,
) {
audio.stop();
}
}