Skip to main content

AddOnChoiceUI.LoadChoice

Declaration#

public void LoadChoice(ISelectableOption option, AddOnChoiceListUI owner)

Parameters#

NameDescription
optionOption to load
ownerUI 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#

NameDescription
optionOption to load
ownerUI 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);    }
}