// I'm too lazy to make CVars.
- private readonly SoundSpecifier _startupSound = new SoundPathSpecifier("/Audio/Effects/Shuttle/hyperspace_begin.ogg");
+ private readonly SoundSpecifier _startupSound = new SoundPathSpecifier("/Audio/Effects/Shuttle/hyperspace_begin.ogg")
+ {
+ Params = AudioParams.Default.WithVolume(-5f),
+ };
// private SoundSpecifier _travelSound = new SoundPathSpecifier();
- private readonly SoundSpecifier _arrivalSound = new SoundPathSpecifier("/Audio/Effects/Shuttle/hyperspace_end.ogg");
+ private readonly SoundSpecifier _arrivalSound = new SoundPathSpecifier("/Audio/Effects/Shuttle/hyperspace_end.ogg")
+ {
+ Params = AudioParams.Default.WithVolume(-5f),
+ };
private readonly TimeSpan _hyperspaceKnockdownTime = TimeSpan.FromSeconds(5);