EquipSlotClient.spawnedItem
public GameObject spawnedItem { get; }Description#
Gets the GameObject spawned for equipped item
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(EquipSlotClient target) { GameObject result = target.spawnedItem; } }