
You are viewing a potentially older version of this package. View Latest Version

This mod extends the functionality of the suit rack and ModelReplacementAPI by allowing suits to be registered as variants of another suit.
This provides the benefit of being able to group suits together and also clean up the suit rack so you no longer end up with dozens of different suits to pick through.
This mod is a library and only provides a changeable hotkey to switch through suit variants.
For Examples of mods using this library, see 45x Anime Models and 45x OC Models
bepinex/plugins folder. Ensure that ModelReplacementAPI and More Suits are also installed.AddSuit function: FFXSuitVariants.AddSuit(Suit Name, Parent Suit Name, Type of Suit Class);// Always register the base suit first, this should be the suit you want to appear on the suit rack (YOU WILL STILL NEED A MORESUITS PNG FILE)
FFXSuitVariants.AddSuit("Octavia", "Octavia", typeof(OctaviaModel);
// Register any suit variants after the base suit, these won't appear on the suit rack (DO NOT INCLUDE A MORESUITS PNG FILE FOR THESE)
FFXSuitVariants.AddSuit("Octavia [Smart]", "Octavia", typeof(OctaviaSmartModel)
Changelog available in the Changelog Tab