InventoryThemeUI.Activate
#
Declarationpublic void Activate(Inventory host)
#
ParametersName | Description |
---|---|
host | Inventory using the theme |
#
DescriptionActivates the theme
#
Usageusing NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void Example(InventoryThemeUI target, Inventory other) { target.Activate(other); }
}