GDTKDynamicFloatValue.valueExpression
public string valueExpression { get; }Description#
Gets the string value behind the float
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKDynamicFloatValue target) { string result = target.valueExpression; } }