StatsDebugManager.NPCStatsRequest
Declaration#
public static void NPCStatsRequest(NPCStats source, GameObject gameObject, string message)Parameters#
| Name | Description |
|---|---|
| source | Stat Source consuming the message |
| gameObject | GameObject containing the Stat Source |
| message | Message to process |
Description#
Progress requests for NPCStats
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(NPCStats other) { StatsDebugManager.NPCStatsRequest(other, "help"); }
}