Skip to main content

StatsDebugManager.StatsAndEffectsRequest

Declaration#

public static void StatsAndEffectsRequest(StatsAndEffects source, GameObject gameObject, string message)

Parameters#

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

Description#

Progress requests for StatsAndEffects

Usage#

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