Female bodies support (#350)

* port female parts

* boobs support!

* tiefling boobs confirmed

* Update female_shirt.png

* Update female_shirt.png
This commit is contained in:
Ed
2024-07-24 09:11:31 +03:00
committed by GitHub
parent c5a6f75def
commit bf93349b73
47 changed files with 360 additions and 69 deletions

View File

@@ -7,12 +7,13 @@ namespace Content.Shared.Humanoid
{
public static bool HasSexMorph(HumanoidVisualLayers layer)
{
return layer switch
{
HumanoidVisualLayers.Chest => true,
HumanoidVisualLayers.Head => true,
_ => false
};
return true; //Support female body
//return layer switch
//{
// HumanoidVisualLayers.Chest => true,
// HumanoidVisualLayers.Head => true,
// _ => false
//};
}
public static string GetSexMorph(HumanoidVisualLayers layer, Sex sex, string id)