Skip to main content

GDTKItem.instanceId

public string instanceId { get; }

Description#

Get the id of this instance of the object

Usage#

Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(GDTKItem target)    {        string result = target.instanceId;    }   }