Compare commits
No commits in common. "69972f9f8e2ea940cd1a1a7419325b139dd2591d" and "9769658bfd654c534df9d509d1c47ea6fc8e64ec" have entirely different histories.
69972f9f8e
...
9769658bfd
5 changed files with 1 additions and 10 deletions
|
@ -41,7 +41,6 @@
|
|||
- zoom.ogg: Recorded a screw thread scraping against a saxophone ligature
|
||||
- Other sounds:
|
||||
- achieve.ogg: UI Completed Status Alert Notification SFX001.wav [by Headphaze, CC BY 4.0](https://freesound.org/s/277033/)
|
||||
- Takeoff.ogg: [By Serat, CC BY 4.0](https://freemusicarchive.org/music/serat/route-remastered/takeoff-remastered/)
|
||||
- JupiterRecording.ogg: An [actual Jupiter recording by NASA](https://archive.org/download/voyager-1-and-2-1990-jupiter-nasa-voyager-space-sounds-electronic), public domain.
|
||||
- Processed by cutting out min 1:47-3:47 and applying a 10s linear crossfade at the end. Exported as ogg with quality=3, see [.kdenlive file](src/audio/JupiterRecording.kdenlive).
|
||||
- The source file has been taken down, and generally, I can't find information on how exactly this was produced. Hoping it's not a hoax.
|
||||
|
|
Binary file not shown.
|
@ -47,11 +47,6 @@ impl Plugin for AudioPlugin {
|
|||
pub struct ZoomTimer(Timer);
|
||||
|
||||
const PATHS: &[(SfxType, Sfx, &str)] = &[
|
||||
(
|
||||
SfxType::Radio,
|
||||
Sfx::BGMTakeoff,
|
||||
"music/Takeoff.ogg",
|
||||
),
|
||||
(
|
||||
SfxType::Radio,
|
||||
Sfx::BGMActualJupiterRecording,
|
||||
|
@ -87,7 +82,6 @@ const PATHS: &[(SfxType, Sfx, &str)] = &[
|
|||
pub enum Sfx {
|
||||
Achieve,
|
||||
BGMActualJupiterRecording,
|
||||
BGMTakeoff,
|
||||
Click,
|
||||
Connect,
|
||||
Crash,
|
||||
|
|
|
@ -981,7 +981,6 @@ fn update_hud(
|
|||
.iter()
|
||||
.filter(|msg: &&Message| match msg.level {
|
||||
LogLevel::Chat => true,
|
||||
LogLevel::Info => true,
|
||||
_ => false,
|
||||
})
|
||||
.rev()
|
||||
|
|
|
@ -335,8 +335,7 @@ impl Settings {
|
|||
pub fn is_radio_playing(&self, sfx: audio::Sfx) -> Option<bool> {
|
||||
let radio = self.radio_mode;
|
||||
match sfx {
|
||||
audio::Sfx::BGMTakeoff => Some(radio == 1),
|
||||
audio::Sfx::BGMActualJupiterRecording => Some(radio == 2),
|
||||
audio::Sfx::BGMActualJupiterRecording => Some(radio == 1),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue