mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-03 06:13:45 +01:00
Fixes.
This commit is contained in:
parent
8d2e84eecf
commit
581b91b337
13 changed files with 123 additions and 52 deletions
|
|
@ -19,22 +19,27 @@ public readonly struct EstManipulation : IMetaManipulation< EstManipulation >
|
|||
Head = CharacterUtility.HeadEstIdx,
|
||||
}
|
||||
|
||||
public readonly ushort SkeletonIdx;
|
||||
public readonly ushort SkeletonIdx;
|
||||
|
||||
[JsonConverter( typeof( StringEnumConverter ) )]
|
||||
public readonly Gender Gender;
|
||||
public readonly Gender Gender;
|
||||
|
||||
[JsonConverter( typeof( StringEnumConverter ) )]
|
||||
public readonly ModelRace Race;
|
||||
public readonly ushort SetId;
|
||||
[JsonConverter( typeof( StringEnumConverter ) )]
|
||||
public readonly EstType Slot;
|
||||
|
||||
public EstManipulation( Gender gender, ModelRace race, EstType estType, ushort setId, ushort skeletonIdx )
|
||||
public readonly ushort SetId;
|
||||
|
||||
[JsonConverter( typeof( StringEnumConverter ) )]
|
||||
public readonly EstType Slot;
|
||||
|
||||
[JsonConstructor]
|
||||
public EstManipulation( Gender gender, ModelRace race, EstType slot, ushort setId, ushort skeletonIdx )
|
||||
{
|
||||
SkeletonIdx = skeletonIdx;
|
||||
Gender = gender;
|
||||
Race = race;
|
||||
SetId = setId;
|
||||
Slot = estType;
|
||||
Slot = slot;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue