Inventory Pro Add-On Documentation
  • Welcome to Inventory Pro Add-On for FPS Engine!
  • BEFORE WE START
    • Early Considerations
    • Add-On Compatibility
    • List of Tutorials
  • GETTING STARTED
    • 01. Basic Set-Up
    • 02. Roadmap
  • CONTENT
    • 03. Content
      • 03.1 CRAFTING
        • Recipe_SO
          • Ingredient
        • CraftingButton
        • CraftingProcess
        • CraftingUI
        • CraftingBench
        • IngredientUIIcon
      • 03.2 FAV MENU
        • FavItemSlot
        • FavItemsMenu
          • FavItemReference
      • 03.3 INTERACTABLES
        • InventoryItemPickeable
      • 03.4 INVENTORY
        • InventoryGridData_SO
        • InventoryProManager
        • GridGenerator
        • InventorySlot
        • SlotData
        • InventoryProManagerInputActions
      • 03.5 ITEMS
        • AppleItem_SO
        • EnergyDrinkItem_SO
      • 03.6 OTHERS
        • 03.6.1 TRADE HUB
          • TradeButton
          • TradeUI
          • TradeHub
        • Chest
        • ExamineItem
      • 03.7 SHOP
        • PurchasableItem
        • Shop
          • ShopItemData
        • ShopUI
        • ShopButton
      • 03.8 UI TOOLKIT
        • ContextMenu
        • HighlightInteractions
        • Padding
        • TooltipManager
    • 04. Shared Content for Add-Ons
  • HOW TO USE & GUIDES
    • Uninstalling the Add-On: Fixing Errors
    • Creating, Updating & Deleting Recipes
    • Inventory Designer: Creating, Updating & Deleting Inventory Grid Data
    • Working with Crafting Benches
    • Working with Chests
    • Working with Shops
    • Working with Purchasable Items
    • Working with Item Examination
    • Favorite Pinned Items Menu Considerations
    • Inventory, Hotbar & Chests Considerations
    • Tetris Inventory Considerations
    • Weapons & Ammo from the Inventory
    • Custom Item_SOs
    • Adding a New Inventory
  • FAQ
    • FAQ
  • SUPPORT
    • Support
Powered by GitBook
On this page
  1. HOW TO USE & GUIDES

Adding a New Inventory

PreviousCustom Item_SOsNextFAQ

Last updated 18 days ago

When working with the Inventory Pro Add-On, it is highly recommended to begin your development within the BlankScene. This scene is pre-configured with all the essential components, allowing you to get started without any additional setup.

However, if you need to add a new inventory system from scratch, there are a few key steps to keep in mind:

  1. Ensure the Presence of a Controller Make sure a CowsinsFPSController is present in your scene. Without a player controller, the inventory system will not function properly. The recommended option is the MovementFPS Controller.

  2. Add the InventoryProManager Prefab Drag and drop the InventoryProManager prefab into your scene. You can find it at: Assets/InventoryPro_ADD-ON/Prefabs/InventoryProManager.prefab

  1. Resolve Reference Errors After adding the InventoryProManager, you may encounter an error. To resolve this, go to the References tab and assign the Player reference accordingly.

And that’s it, your inventory system should now be ready to use!