* Per-map parallax support * Comments for future sloth * c * bet * Fix exception * VV support * Fix parallax * mem * weightless sounds * Gravity stuff * placeholder coz im too lazy to stash don't @ me son * decent clouds * sky * Fast parallax * Imagine spelling * Loicense * perish * Fix weightless status Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
16 lines
407 B
C#
16 lines
407 B
C#
using Content.Shared.Sound;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Movement.Components
|
|
{
|
|
/// <summary>
|
|
/// Changes footstep sound
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed class FootstepModifierComponent : Component
|
|
{
|
|
[DataField("footstepSoundCollection", required: true)]
|
|
public SoundSpecifier Sound = default!;
|
|
}
|
|
}
|