From c4a0763e78ba433c016aeb4913641d4b36d3855a Mon Sep 17 00:00:00 2001 From: nblock <34419030+nblockbuster@users.noreply.github.com> Date: Tue, 7 Jul 2026 15:08:52 -0400 Subject: [PATCH] show toon props in prop list --- Assets/Scripts/UmaViewerUI.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}