Skip to content

Commit

Permalink
Fix not disabling DisableIKCalc when Stiletto is present
Browse files Browse the repository at this point in the history
  • Loading branch information
ManlyMarco committed May 31, 2021
1 parent 4170e5a commit 24d0487
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Core_Fix_MakerOptimizations/Core.MakerOptimizations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public MakerOptimizations()
var stilettoInstalled = BepInEx.Bootstrap.Chainloader.PluginInfos.Values.Any(x => x.Metadata.GUID == "com.essu.stiletto");

DisableIKCalc = Config.Bind(Utilities.ConfigSectionTweaks, "Disable IK in maker", !stilettoInstalled, "This setting prevents the character's limbs from being readjusted to match body proportions. It can fix weirdly bent limbs on characters that use ABMX sliders, but will break Stiletto if it's installed.\nWarning: This setting will get reset to false if Stiletto is installed to avoid issues!\nChanges take effect after game restart.");
if (stilettoInstalled) DisableIKCalc.Value = false;
DisableCharaName = Config.Bind(Utilities.ConfigSectionTweaks, "Disable character name box in maker", true, "Hides the name box in the bottom right part of the maker, giving you a clearer look at the character.");
DisableHiddenTabs = Config.Bind(Utilities.ConfigSectionTweaks, "Disable hidden tabs in maker", true, "Major performance improvement in chara maker.\nRecommended to be used together with list virtualization, otherwise switching between tabs becomes slower.\nChanges take effect after maker restart.");
#if !KKS
Expand Down

0 comments on commit 24d0487

Please sign in to comment.