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