mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 23:17:43 +03:00
# Description This is a port of https://github.com/Fansana/floofstation1/pull/445 Except I despise that this wasn't upstreamed so much that I didn't even cherrypick it. # Changelog 🆑 - add: Footprints are now cleaned in a small radius around the mouse cursor when mopping them. (cherry picked from commit 11678af96950f6af75f7effef40fc92a7af33350)
15 lines
381 B
C#
15 lines
381 B
C#
using Content.Shared.FixedPoint;
|
|
|
|
|
|
namespace Content.Shared.FootPrint;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class PuddleFootPrintsComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Ratio between puddle volume and the amount of reagents that can be transferred from it.
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public FixedPoint2 SizeRatio = 0.15f;
|
|
}
|