Skip to main content

SocketClient.spawnedItem

public GameObject spawnedItem { get; }

Description#

Gets the GameObject spawned for socketed item

Usage#

Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(SocketClient target)    {        GameObject result = target.spawnedItem;    }   }