diff --git a/README.md b/README.md index 5bb9290..41ecc05 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,7 @@ More information here: https://bevy-cheatbook.github.io/setup/cross/linux-window - https://pixabay.com/sound-effects/thrusters-loopwav-14699 - https://pixabay.com/sound-effects/rocket-loop-99748 - https://pixabay.com/sound-effects/350cc-bike-firing-32391 +- Music: [Dead Space Style Ambient Music](https://pixabay.com/music/ambient-dead-space-style-ambient-music-184793) by [Sharvarian](https://www.fiverr.com/sharvarian) - Star chart based on the [HYG Stellar database](https://github.com/astronexus/HYG-Database) - Custom font Yupiter is based on: - Noto Sans Symbols 2, Copyright 2022 The Noto Project Authors (https://github.com/notofonts/symbols) diff --git a/assets/music/dead-space-style-ambient-music.ogg b/assets/music/dead-space-style-ambient-music.ogg new file mode 100644 index 0000000..9e4366f Binary files /dev/null and b/assets/music/dead-space-style-ambient-music.ogg differ diff --git a/src/audio.rs b/src/audio.rs index 9880b49..689e8b1 100644 --- a/src/audio.rs +++ b/src/audio.rs @@ -8,7 +8,7 @@ const ASSET_INCOMING_MESSAGE: &str = "sounds/connect.ogg"; const ASSET_PING: &str = "sounds/connect.ogg"; const ASSET_CONNECT: &str = "sounds/connect.ogg"; const ASSET_RADIO: &str = "external/LP - Girls Go Wild (Official Music Video) [M7XRN0oHGIM].mp3"; -const ASSET_BGM: &str = "external/Ben Prunty - FTL - 12 Void (Explore).mp3"; +const ASSET_BGM: &str = "music/dead-space-style-ambient-music.ogg"; const ASSET_THRUSTER: &str = "sounds/thruster.ogg"; const ASSET_ROCKET: &str = "sounds/rocket.ogg"; const ASSET_WAKEUP: &str = "sounds/wakeup.ogg";