PerkUI.Load
Declaration#
public void Load(GDTKPerk perk)Parameters#
| Name | Description |
|---|---|
| perk | Object load |
Description#
Load data
Usage#
Example
using NullSave.GDTK;using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(PerkUI target) { target.Load(ToolRegistry.GetComponent<StatsDatabase>().perks[0]); }
}