RecipeUI.Load
Declaration#
public void Load(GDTKRecipe recipe, Inventory componentSource)Parameters#
| Name | Description |
|---|---|
| recipe | Recipe to display |
| componentSource | Associated Inventory for components |
Description#
Load data
Usage#
using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(RecipeUI target, GDTKRecipe other, Inventory host) { target.Load(other, host); }
}