StorageAreaPlugin.GetUIDetails
Declaration#
public GDTKStorageUIInfo GetUIDetails(GDTKItem item)Parameters#
| Name | Description |
|---|---|
| item | Item 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); }}