6
StarHorizon_Public/Content.Shared/Humanoid/HumanoidVisualLayers.cs
2025-12-18 02:55:17 +03:00

39 lines
885 B
C#

using Content.Shared.Humanoid.Markings;
using Robust.Shared.Serialization;
namespace Content.Shared.Humanoid
{
[Serializable, NetSerializable]
public enum HumanoidVisualLayers : byte
{
Special, // for the cat ears
Tail,
Hair,
FacialHair,
Chest,
Head,
Snout,
HeadSide, // side parts (i.e., frills)
HeadTop, // top parts (i.e., ears)
Eyes,
RArm,
LArm,
RHand,
LHand,
RLeg,
LLeg,
RFoot,
LFoot,
Handcuffs,
StencilMask,
Ensnare,
Fire,
LArmExtension, // Frontier: a species-specific extension layer, e.g. for harpy wings
RArmExtension, // Frontier: a species-specific extension layer, e.g. for harpy wings
UndergarmentTop,
UndergarmentBottom,
Other,
}
}