diff --git a/Assets/Scripts/UmaViewerUI.cs b/Assets/Scripts/UmaViewerUI.cs index e31b776c..271c49a3 100644 --- a/Assets/Scripts/UmaViewerUI.cs +++ b/Assets/Scripts/UmaViewerUI.cs @@ -521,7 +521,7 @@ public void LoadNormalSoundPanels() public void LoadPropPanel() { var pageentrys = new List(); - foreach (var prop in Main.AbList.Where(a => a.Key.Contains("pfb_chr_prop") && !a.Key.Contains("clothes"))) + foreach (var prop in Main.AbList.Where(a => (a.Key.Contains("pfb_chr_prop") || a.Key.Contains("pfb_toon_prop")) && !a.Key.Contains("clothes"))) { var pageentry = new PageManager.Entry(); pageentry.Name = Path.GetFileName(prop.Key); @@ -1347,4 +1347,4 @@ public static void SaveCurrentColorSetRow() UmaViewerUI.Instance.ShowMessage($"ColorSet data saved: {fullPath}", UIMessageType.Success); } -} \ No newline at end of file +}