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