SocketAbility.attachedItem
public GDTKItem attachedItem { get; }Description#
Gets the item attached to this socket
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(SocketAbility target) { GDTKItem result = target.attachedItem; } }