Files
tbd-station-14/Content.Shared/Friction/TileFrictionModifier.cs
Vera Aguilera Puerto c5f7c61041 Fix some friend access violations by allowing others access. (#8594)
Rename Friend attribute to Access attribute.
Updates submodule to v0.21.0.0 as well.
2022-06-07 11:30:27 +02:00

15 lines
437 B
C#

namespace Content.Shared.Friction
{
[RegisterComponent]
[Access(typeof(SharedTileFrictionController))]
public sealed class TileFrictionModifierComponent : Component
{
/// <summary>
/// Multiply the tilefriction cvar by this to get the body's actual tilefriction.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("modifier")]
public float Modifier;
}
}