Skip to main content

StatsDebugManager.GlobalStatsRequest

Declaration#

public static void GlobalStatsRequest(GlobalStats source, string message)

Parameters#

NameDescription
sourceStat Source consuming the message
messageMessage to process

Description#

Progress requests for GlobalStats

Usage#

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