mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
# 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>  </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)
36 lines
658 B
C#
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,
|
|
}
|
|
}
|