Skip to main content

StatsDebugManager.BasicStatsRequest

Declaration#

public static void BasicStatsRequest(BasicStats source, GameObject gameObject, string message)

Parameters#

NameDescription
sourceStat Source consuming the message
gameObjectGameObject containing the Stat Source
messageMessage to process

Description#

Progress requests for BasicStats

Usage#

Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(BasicStats other)    {        StatsDebugManager.BasicStatsRequest(other, "help");    }
}