remove rocket.ogg
This commit is contained in:
parent
b3f477656b
commit
e350697125
|
@ -33,7 +33,6 @@
|
||||||
- https://pixabay.com/sound-effects/click-button-140881
|
- https://pixabay.com/sound-effects/click-button-140881
|
||||||
- https://pixabay.com/sound-effects/data-transmission-sound-from-14664-72309
|
- https://pixabay.com/sound-effects/data-transmission-sound-from-14664-72309
|
||||||
- https://pixabay.com/sound-effects/thrusters-loopwav-14699
|
- 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
|
- https://pixabay.com/sound-effects/350cc-bike-firing-32391
|
||||||
- https://pixabay.com/sound-effects/electricity-6353
|
- https://pixabay.com/sound-effects/electricity-6353
|
||||||
- https://pixabay.com/sound-effects/ducati-696-monster-33217
|
- https://pixabay.com/sound-effects/ducati-696-monster-33217
|
||||||
|
|
Binary file not shown.
|
@ -198,7 +198,6 @@ impl Default for Vehicle {
|
||||||
#[derive(Copy, Clone, PartialEq)]
|
#[derive(Copy, Clone, PartialEq)]
|
||||||
pub enum EngineType {
|
pub enum EngineType {
|
||||||
Monopropellant,
|
Monopropellant,
|
||||||
Rocket,
|
|
||||||
Ion,
|
Ion,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,6 @@ const PATHS: &[(SfxType, Sfx, &str)] = &[
|
||||||
"sounds/electricmotor.ogg",
|
"sounds/electricmotor.ogg",
|
||||||
),
|
),
|
||||||
(SfxType::LoopSfx, Sfx::Ion, "sounds/ion.ogg"),
|
(SfxType::LoopSfx, Sfx::Ion, "sounds/ion.ogg"),
|
||||||
(SfxType::LoopSfx, Sfx::Rocket, "sounds/rocket.ogg"),
|
|
||||||
(SfxType::LoopSfx, Sfx::Thruster, "sounds/thruster.ogg"),
|
(SfxType::LoopSfx, Sfx::Thruster, "sounds/thruster.ogg"),
|
||||||
(SfxType::LoopSfx, Sfx::Gasp, "sounds/gasp.ogg"),
|
(SfxType::LoopSfx, Sfx::Gasp, "sounds/gasp.ogg"),
|
||||||
(SfxType::OneOff, Sfx::GaspRelief, "sounds/gasprelief.ogg"),
|
(SfxType::OneOff, Sfx::GaspRelief, "sounds/gasprelief.ogg"),
|
||||||
|
@ -107,7 +106,6 @@ pub enum Sfx {
|
||||||
IncomingChatMessage,
|
IncomingChatMessage,
|
||||||
Ion,
|
Ion,
|
||||||
Ping,
|
Ping,
|
||||||
Rocket,
|
|
||||||
Switch,
|
Switch,
|
||||||
Thruster,
|
Thruster,
|
||||||
WakeUp,
|
WakeUp,
|
||||||
|
|
|
@ -662,11 +662,6 @@ pub fn apply_input_to_player(
|
||||||
actor::EngineType::Monopropellant,
|
actor::EngineType::Monopropellant,
|
||||||
sinks.get(&audio::Sfx::Thruster),
|
sinks.get(&audio::Sfx::Thruster),
|
||||||
),
|
),
|
||||||
(
|
|
||||||
1.0,
|
|
||||||
actor::EngineType::Rocket,
|
|
||||||
sinks.get(&audio::Sfx::Rocket),
|
|
||||||
),
|
|
||||||
(1.4, actor::EngineType::Ion, sinks.get(&audio::Sfx::Ion)),
|
(1.4, actor::EngineType::Ion, sinks.get(&audio::Sfx::Ion)),
|
||||||
];
|
];
|
||||||
let seconds_to_max_vol = 0.05;
|
let seconds_to_max_vol = 0.05;
|
||||||
|
|
|
@ -557,9 +557,6 @@ pub fn load_defs(mut ew_spawn: EventWriter<SpawnEvent>) {
|
||||||
state.warmup_seconds = warmup_time_float;
|
state.warmup_seconds = warmup_time_float;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
["engine", "rocket"] => {
|
|
||||||
state.engine_type = actor::EngineType::Rocket;
|
|
||||||
}
|
|
||||||
["engine", "ion"] => {
|
["engine", "ion"] => {
|
||||||
state.engine_type = actor::EngineType::Ion;
|
state.engine_type = actor::EngineType::Ion;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue