BackgroundUIDBListDisplay.GetSelectedItem
Declaration#
public virtual T GetSelectedItem()Description#
Get the selected item as requested type T
Usage#
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(BackgroundUIDBGridDisplay target) { BackgroundUI result = target.GetSelectedItem<BackgroundUI>(); }
}