TransferWindowUI.SetArgs
#
Declarationpublic virtual void SetArgs(InventoryThemeUI themeUI, Object[] args)
#
ParametersName | Description |
---|---|
themeUI | Associated Inventory Theme UI |
args | Parameters to pass |
#
DescriptionSet the parameters for the window
#
Usageusing NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(TransferWindowUI target, InventoryThemeUI other) { target.SetArgs(other, new object[] { true, 3 }); }
}