Skip to main content

StatsDebugManager.NPCStatsRequest

Declaration#

public static void NPCStatsRequest(NPCStats source, GameObject gameObject, string message)

Parameters#

NameDescription
sourceStat Source consuming the message
gameObjectGameObject containing the Stat Source
messageMessage 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");    }
}