GDTKItem.pluginWrappers
public List<UniversalPluginWrapper<ItemPlugin>> pluginWrappers { get; }Description#
Get a list of plugin wrappers on this item
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKItem target) { System.Collections.Generic.List<UniversalPluginWrapper<ItemPlugin>> result = target.pluginWrappers; } }