mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-17 22:24:22 +01:00
Fix viera ears
This commit is contained in:
parent
0440324432
commit
8bc71fb1b3
2 changed files with 3 additions and 3 deletions
|
|
@ -49,7 +49,7 @@ public sealed class ModelManager(IFramework framework, ActiveCollections collect
|
|||
ObjectType.Character when info.BodySlot is BodySlot.Body or BodySlot.Tail => [baseSkeleton],
|
||||
ObjectType.Character when info.BodySlot is BodySlot.Hair
|
||||
=> [baseSkeleton, ResolveEstSkeleton(EstManipulation.EstType.Hair, info, estManipulations)],
|
||||
ObjectType.Character when info.BodySlot is BodySlot.Face
|
||||
ObjectType.Character when info.BodySlot is BodySlot.Face or BodySlot.Ear
|
||||
=> [baseSkeleton, ResolveEstSkeleton(EstManipulation.EstType.Face, info, estManipulations)],
|
||||
ObjectType.Character => throw new Exception($"Currently unsupported human model type \"{info.BodySlot}\"."),
|
||||
ObjectType.DemiHuman => [GamePaths.DemiHuman.Sklb.Path(info.PrimaryId)],
|
||||
|
|
@ -75,7 +75,7 @@ public sealed class ModelManager(IFramework framework, ActiveCollections collect
|
|||
?? collections.Current.MetaCache?.GetEstEntry(type, info.GenderRace, info.PrimaryId)
|
||||
?? info.PrimaryId;
|
||||
|
||||
return GamePaths.Skeleton.Sklb.Path(info.GenderRace, info.BodySlot.ToSuffix(), targetId);
|
||||
return GamePaths.Skeleton.Sklb.Path(info.GenderRace, EstManipulation.ToName(type), targetId);
|
||||
}
|
||||
|
||||
private Task Enqueue(IAction action)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue