AddOnChoiceUI.LoadChoice
Declaration#
public void LoadChoice(ISelectableOption option, AddOnChoiceListUI owner)Parameters#
| Name | Description |
|---|---|
| option | Option to load |
| owner | UI List displaying this option |
Description#
Load data for an ISelectableOption
Usage#
Example
using NullSave.GDTK;using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(AddOnChoiceUI target, ISelectableOption option, AddOnChoiceListUI list) { target.LoadChoice(option, list); }
}Declaration#
public void LoadChoice(AddOnPluginChoice option, AddOnChoiceListUI owner)Parameters#
| Name | Description |
|---|---|
| option | Option to load |
| owner | UI List displaying this option |
Description#
Load data for an AddOnPluginChoice
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(AddOnChoiceUI target, AddOnPluginChoice option, AddOnChoiceListUI list) { target.LoadChoice(option, list); }
}