ShopTweaks
Adds pages to Shop UI & moreShopTweaks
- Adds pages to Shop UI
- Adds Shop Category API to register new categories
How to Create Shop Categories
using ShopTweaks;
[BepInPlugin(ModGUID, ModName, ModVersion)]
public class ExamplePlugin : BaseUnityPlugin
{
public ShopItemCategory NewCategory;
private void Awake()
{
// RegisterCategory(string name)
NewCategory = ShopCategories.RegisterCategory("Test");
// Use any Item adding API (ShopUtils etc) to add items using this category
}
}
More info can be found on the modding discord