GDTKStatValue.ToExpression
Declaration#
public string ToExpression()Description#
Export object to a string expression
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKStatValue target) { string result = target.ToExpression(); }
}