GDTKStatValue.valueWithModifiers
public Double valueWithModifiers { get; }Description#
Gets the value with all modifiers being applied
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKStatValue target) { double result = target.valueWithModifiers; }
}