Skip to main content

StorageAreaPlugin.GetUIDetails

Declaration#

public GDTKStorageUIInfo GetUIDetails(GDTKItem item)

Parameters#

NameDescription
itemItem to get information for

Description#

Get the UI display details for an item in storage

Usage#

using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(StorageAreaPlugin target, GDTKItem other)    {        GDTKStorageUIInfo result = target.GetUIDetails(other);    }}