Files
wwdpublic/Content.Shared/Humanoid/HumanoidVisualLayers.cs
VMSolidus f0de1d3d4a Port Adjustable Jumpsuits And Undergarments (#1720)
# Description

Ports https://github.com/impstation/imp-station-14/pull/375
and https://github.com/impstation/imp-station-14/pull/384
Which are meant to go together.

<details><summary><h1>Media</h1></summary>
<p>

![image](https://github.com/user-attachments/assets/090482f0-3665-42c6-badd-0985a928adfd)

</p>
</details>

# Changelog

🆑
- add: Added the ability to roll down jumpsuits to the waist, as well as
undergarment markings for wearing alongside said rolled jumpsuits.

---------

Co-authored-by: V <97265903+formlessnameless@users.noreply.github.com>

(cherry picked from commit 40b78c3150707db2965333b9e821add650d6cb53)
2025-02-15 00:03:11 +03:00

36 lines
658 B
C#

using Content.Shared.Humanoid.Markings;
using Robust.Shared.Serialization;
namespace Content.Shared.Humanoid
{
[Serializable, NetSerializable]
public enum HumanoidVisualLayers : byte
{
Face,
Tail,
Wings,
Hair,
FacialHair,
Chest,
Underwear,
Undershirt,
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,
}
}