• Hi Guest!

    We have posted a new VaM2 dev log on Patreon, starting a monthly cadence of written progress updates between Beta releases. Highlights include the new Gizmos System, Selection Carousel, and Modes System with Context-Specific Editing. Beta1.2 is 15 of 21 items complete.

    Read the full post on Patreon, or follow progress on the public Trello roadmap.
ClothingAutoConfigurator

Plugins + Scripts ClothingAutoConfigurator

Download [<1 MB]

Ashu27

Well-known member
Joined
Oct 3, 2022
Messages
180
Reactions
769
Noticed an issue that breaks the auto-implementation of the clothing plugin manager:

When it adds the the plugin to the "storables" it adds this

Code:
{
         "id" : "<Clothing-Name>Style",
         "plugins" : {
            "plugin#0" : "Stopper.ClothingPluginManager.7:/Custom/Scripts/Stopper/ClothingPluginManager/ClothingPluginManager.cs"
         }
      },

When it should be adding this

Code:
{
         "id" : "<Clothing-Name>",
         "plugins" : {
            "plugin#0" : "Stopper.ClothingPluginManager.7:/Custom/Scripts/Stopper/ClothingPluginManager/ClothingPluginManager.cs"
         }
      },

For whatever reason, that extra "Style" in the id causes the ClothingPluginManager.cs to just not work
 
Back
Top Bottom