Files
tbd-station-14/Content.Shared/Movement/Events/TileFrictionEvent.cs
Princess Cheeseballs 61adee05f6 [HOTFIX] Movement Rewrite Hotfix Shuttles now respect their friction values (#37154)
* Shuttles now use their proper friction values

* Documentation

* Shuttles now use their proper friction values

* Documentation

* What the instrumentsystem doin

* what the instrumentsystem doing 2
2025-05-13 22:14:18 +10:00

17 lines
422 B
C#

namespace Content.Shared.Movement.Events;
/// <summary>
/// Raised to try and get any tile friction modifiers for a particular body.
/// </summary>
[ByRefEvent]
public struct TileFrictionEvent
{
public float Modifier;
public TileFrictionEvent(float modifier)
{
// TODO: If something ever uses different angular and linear modifiers, split this into two modifiers
Modifier = modifier;
}
}