Files
wwdpublic/Content.Client/Clothing/FlippableClothingVisualsComponent.cs
Cojoke 78931e1c44 Makes Eyepatches Flippable (#26277)
(cherry picked from commit 390f8d19d1505364389e1f595a54df2cfa43a96e)
2025-07-12 02:32:16 +10:00

17 lines
466 B
C#

namespace Content.Client.Clothing;
/// <summary>
/// Communicates folded layers data (currently only Scale to handle flipping)
/// to the wearer clothing sprite layer
/// </summary>
[RegisterComponent]
[Access(typeof(FlippableClothingVisualizerSystem))]
public sealed partial class FlippableClothingVisualsComponent : Component
{
[DataField]
public string FoldingLayer = "foldedLayer";
[DataField]
public string UnfoldingLayer = "unfoldedLayer";
}