🖥️
PLAY SDK Documentation
v0.13.0-dev (Obsolete)
v0.13.0-dev (Obsolete)
  • 🛠️ENVIRONMENT SETUP
    • Overview
    • PLAY Sample Package
  • 🖥️SDK Integration Guides
    • Getting Started
      • Unity
        • Tech Requirements
        • Step 1 - Import packages
        • Step 2 - Import credentials
        • Step 3 - Environments
        • Step 4 - Initialization
      • Unreal
        • Tech Requirements
        • Step 1 - Import packages
        • Step 2 - Configure credentials
        • Step 3 - Environments
        • Step 4 - Initialization
    • Authentication
      • Unity
      • Unreal
    • User Profile
      • Unity
      • Unreal
    • Virtual Items
      • Unity
      • Unreal
    • Inventory
      • Unity
      • Unreal
    • Store
      • Unity
      • Unreal
    • Currency (IAP)
      • Unity
      • Unreal
    • Achievements
      • Unity
      • Unreal
    • Game Progress
      • Unity
      • Unreal
    • Leaderboards
      • Unity
      • Unreal
    • Matchmaking
      • Unity
      • Unreal
    • Wallets
      • Unity
      • Unreal
    • Analytics
      • Unity
      • Unreal
    • Notifications
      • Unity
      • Unreal
    • Module Requests
  • 🎲Game Design Guides
    • Overview
    • User Authentication
    • User Profile
    • Game (Progression + Rewards)
    • Virtual Items
    • Currency (IAP)
    • Store
    • Inventory
    • Achievements
    • NFT Purchase Flow & Wallets
    • Limited-Time Offers
    • NFT Passes
  • 📌Links
    • PLAY Whitepaper
    • PLAY Postman API Doc
    • PLAY Dev Dashboard
    • PLAY Example Repository Dev
    • PLAY Example Repository Prod
    • API Endpoints
    • Report an Issue
    • Discord dev-chat
    • Telegram Community Channel
    • Social Links
Powered by GitBook
On this page
  • Introduction
  • Get inventory items
  • Add to inventory
  • Get inventory item properties
  • Set inventory item properties

Was this helpful?

Export as PDF
  1. SDK Integration Guides
  2. Inventory

Unreal

Unreal integration

PreviousUnityNextStore

Last updated 8 months ago

Was this helpful?

Introduction

After the user purchases a Virtual Item, it is automatically added to the user's Inventory during the transaction process. It is possible also to add a virtual item to the user's inventory without going through the purchase process for non-NFT items.

InventoryItem
  • id (string): Unique inventory id for this item.

  • virtualItemId (string): Id of the virtual item stored in the inventory.

  • quantity (int): Amount of items store in this inventory slot.

  • appIds (List<string>): List of project id where this item will be accessible.

  • tags (List<string>): List of tags used for filtering items.

  • properties (List<Property>): List of properties for this inventory item.

Get inventory items

Add to inventory

Add to inventory can be use to add regular virtual items into the player inventory. NFT's cannot be added to the inventory with this functionality.

Get inventory item properties

Set inventory item properties

🖥️
LogoGet Inventory Items posted by Car3manPLAY | blueprintUE | PasteBin For Unreal Engineblueprintue
LogoAdd to inventory posted by Car3manPLAY | blueprintUE | PasteBin For Unreal Engineblueprintue
LogoGet Inventory Item Properties posted by Car3manPLAY | blueprintUE | PasteBin For Unreal Engineblueprintue
LogoSet Inventory Item Properties posted by Car3manPLAY | blueprintUE | PasteBin For Unreal Engineblueprintue