Files
crystall-punk-14/Content.Client/Clothing/FlippableClothingVisualsComponent.cs

17 lines
466 B
C#
Raw Permalink Normal View History

2024-06-16 22:21:29 -05:00
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";
}