PlayerCharacterStats.globalStats
public GlobalStats globalStats { get; }Description#
Returns a reference to the Global Stats in the scene.
Usage#
Example
using NullSave.GDTK.Statsusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(PlayerCharacterStats target) { GlobalStats result = target.globalStats; } }