PlayerCharacterStats.levelId
public string levelId { get; }Description#
Returns the id of the stat associate with leveling
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(PlayerCharacterStats target) { string result = target.levelId; }
}