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:
@@ -85,8 +85,19 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem
|
||||
if (protoId == null)
|
||||
return;
|
||||
|
||||
//if (sexMorph)
|
||||
// protoId = HumanoidVisualLayersExtension.GetSexMorph(key, component.Sex, protoId);
|
||||
|
||||
//CP14 female bodies support
|
||||
if (sexMorph)
|
||||
protoId = HumanoidVisualLayersExtension.GetSexMorph(key, component.Sex, protoId);
|
||||
{
|
||||
var tempProto = HumanoidVisualLayersExtension.GetSexMorph(key, component.Sex, protoId);
|
||||
if (_prototypeManager.TryIndex<HumanoidSpeciesSpriteLayer>(tempProto, out _))
|
||||
{
|
||||
protoId = tempProto;
|
||||
}
|
||||
}
|
||||
//CP14 female bodies support end
|
||||
|
||||
var proto = _prototypeManager.Index<HumanoidSpeciesSpriteLayer>(protoId);
|
||||
component.BaseLayers[key] = proto;
|
||||
|
||||
Reference in New Issue
Block a user