GDTKStatModifier.appliedValue
public Double appliedValue { get; set; }Description#
Get/Set the applied value of the modifier
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKStatModifier target) { double result = target.appliedValue; }
}