You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"When encountering specific mods, usually but not necessarily denoted by a .pcp file ending, Penumbra will automatically try to create an associated collection and assign it to a specific character for this mod package. This can turn this behaviour off if unwanted.",
603
605
!_config.DisablePcpHandling, v =>_config.DisablePcpHandling=!v);
606
+
607
+
varactive=_config.DeleteModModifier.IsActive();
608
+
ImGui.SameLine();
609
+
if(ImUtf8.ButtonEx("Delete all PCP Mods"u8,"Deletes all mods tagged with 'PCP' from the mod list."u8,disabled:!active))
610
+
_pcpService.CleanPcpMods();
611
+
if(!active)
612
+
ImUtf8.HoverTooltip(ImGuiHoveredFlags.AllowWhenDisabled,$"Hold {_config.DeleteModModifier} while clicking.");
613
+
614
+
ImGui.SameLine();
615
+
if(ImUtf8.ButtonEx("Delete all PCP Collections"u8,"Deletes all collections whose name starts with 'PCP/' from the collection list."u8,disabled:!active))
616
+
_pcpService.CleanPcpCollections();
617
+
if(!active)
618
+
ImUtf8.HoverTooltip(ImGuiHoveredFlags.AllowWhenDisabled,$"Hold {_config.DeleteModModifier} while clicking.");
619
+
620
+
Checkbox("Allow Other Plugins Access to PCP Handling",
621
+
"When creating or importing PCP files, other plugins can add and interpret their own data to the character.json file.",
0 commit comments