Dwarf species (#119)

* add dworf sprites

* dwarf prototypes

* add shoes displacement. FUCK! its doesnt work

* spaces

* footfix

* final dwarf!

* fixes
This commit is contained in:
Ed
2024-04-28 01:44:43 +03:00
committed by GitHub
parent 353fcd9cfe
commit 33d04ef35b
39 changed files with 851 additions and 125 deletions

View File

@@ -13,7 +13,6 @@ public sealed partial class InventoryComponent : Component
[DataField("speciesId")] public string? SpeciesId { get; set; }
[DataField] public string JumpsuitShader = "StencilDraw";
[DataField] public Dictionary<string, SlotDisplacementData> Displacements = [];
public SlotDefinition[] Slots = Array.Empty<SlotDefinition>();
@@ -24,5 +23,8 @@ public sealed partial class InventoryComponent : Component
{
[DataField(required: true)]
public PrototypeLayerData Layer = default!;
[DataField]
public string? ShaderOverride = "DisplacedStencilDraw";
}
}