Files
tbd-station-14/Content.Shared/Humanoid/HumanoidVisualLayers.cs
SlamBamActionman 27cfc0939c Add undergarments & "Censor Nudity" toggle to options (#33185)
* Initial commit

* Attribution

* Review changes

* Added comment for upstream
2025-03-05 10:14:01 +01:00

36 lines
684 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,
UndergarmentTop,
UndergarmentBottom,
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,
}
}