Files
tbd-station-14/Content.Server/Audio/AmbientOnPoweredComponent.cs
metalgearsloth ff40a7665d Ambient sound system (#4552)
* Ambient sound system

Client-side system that plays audio from nearby objects that are randomly sampled.

* Decent

* Tweaks

* Tweaks

* Comment this out for now

* reduce VM sound

* Fix rolloff

* Fixes

* Volume tweak
2021-09-07 18:47:23 +10:00

15 lines
378 B
C#

using Content.Shared.Audio;
using Robust.Shared.GameObjects;
namespace Content.Server.Audio
{
/// <summary>
/// Toggles <see cref="AmbientSoundComponent"/> on when powered and off when not powered.
/// </summary>
[RegisterComponent]
public class AmbientOnPoweredComponent : Component
{
public override string Name => "AmbientOnPowered";
}
}