File tree Expand file tree Collapse file tree 5 files changed +19
-4
lines changed
Expand file tree Collapse file tree 5 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -100,5 +100,6 @@ struct PALICO_APPEARANCE {
100100
101101 ubyte voiceType;
102102 ubyte voicePitch;
103- ushort unk1; // Outline/face and pupils? Can only be used when bought iceborne dlc.
103+ ubyte outlineType; // 0 - 3
104+ ubyte pupilType; // 0 - 3
104105};
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <TargetFramework >netstandard2.0</TargetFramework >
5- <Version >0.13.0 </Version >
5+ <Version >0.13.1 </Version >
66 <Authors >Fusion86</Authors >
77 <LangVersion >8.0</LangVersion >
88 </PropertyGroup >
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ public interface IPalicoAppearanceProperties
1919 byte EyeType { get ; set ; }
2020 byte EarType { get ; set ; }
2121 byte TailType { get ; set ; }
22+ byte OutlineType { get ; set ; }
23+ byte PupilType { get ; set ; }
2224 PalicoVoiceType VoiceType { get ; set ; }
2325 PalicoVoicePitch VoicePitch { get ; set ; }
2426 }
Original file line number Diff line number Diff line change @@ -748,6 +748,18 @@ byte IPalicoAppearanceProperties.TailType
748748 set => Native . PalicoAppearance . TailType = value ;
749749 }
750750
751+ byte IPalicoAppearanceProperties . OutlineType
752+ {
753+ get => Native . PalicoAppearance . OutlineType ;
754+ set => Native . PalicoAppearance . OutlineType = value ;
755+ }
756+
757+ byte IPalicoAppearanceProperties . PupilType
758+ {
759+ get => Native . PalicoAppearance . PupilType ;
760+ set => Native . PalicoAppearance . PupilType = value ;
761+ }
762+
751763 PalicoVoiceType IPalicoAppearanceProperties . VoiceType
752764 {
753765 get => Native . PalicoAppearance . VoiceType ;
@@ -759,7 +771,6 @@ PalicoVoicePitch IPalicoAppearanceProperties.VoicePitch
759771 get => Native . PalicoAppearance . VoicePitch ;
760772 set => Native . PalicoAppearance . VoicePitch = value ;
761773 }
762-
763774 #endregion
764775 }
765776}
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ public struct PalicoAppearance
3535 public byte TailType ;
3636 public PalicoVoiceType VoiceType ;
3737 public PalicoVoicePitch VoicePitch ;
38- public ushort Unk ; // Zero?
38+ public byte OutlineType ;
39+ public byte PupilType ;
3940 }
4041}
You can’t perform that action at this time.
0 commit comments