AddOnChoiceListUI.ToggleChildSelect
Declaration#
public void ToggleChildSelect(AddOnChoiceUI child)Parameters#
| Name | Description |
|---|---|
| child | Child to target when toggling selected state |
Description#
Toggles whether or not an object has been selected
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(AddOnChoiceListUI target, AddOnChoiceUI other) { target.ToggleChildSelect(other); }
}