Skip to main content

BackgroundListUIDB.SetSelectedItem

Declaration#

public virtual void SetSelectedItem(T value)

Parameters#

NameDescription
valueItem to set as selected

Description#

Set the selected item of type T

Usage#

using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(BackgroundListUIDB target, GDTKBackground other)    {       target.SetSelectedItem(other);    }
}