Files
wwdpublic/Content.Shared/Humanoid/HumanoidVisualLayers.cs
SlamBamActionman 0e8be5c27c Add undergarments & "Censor Nudity" toggle to options (#33185)
* Initial commit

* Attribution

* Review changes

* Added comment for upstream

(cherry picked from commit 27cfc0939cafcaf633adb36d645187048399e0eb)
2026-02-09 19:51:58 +03:00

37 lines
709 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
Face,
Tail,
Wings,
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,
}
}