Files
wwdpublic/Content.Shared/Movement/Components/FootstepModifierComponent.cs
mubururu_ 9d64ebdbae silent footsteps for ninja (#33280)
* waow

* nice suggestion

* nullable sound

* fix stuff

---------

Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com>
Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>

(cherry picked from commit 4ddd7d3c5f514e667f5caf4c28b5710542cfe75c)
2025-09-27 12:50:15 +03:00

15 lines
389 B
C#

using Robust.Shared.Audio;
using Robust.Shared.GameStates;
namespace Content.Shared.Movement.Components;
/// <summary>
/// Changes footstep sound
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class FootstepModifierComponent : Component
{
[DataField, AutoNetworkedField]
public SoundSpecifier? FootstepSoundCollection;
}