On this pageGDTKStatusCondition.activepublic bool active { get; }CopyDescription#Get if this condition is currently activeUsage#Exampleusing NullSave.GDTK.Stats;using UnityEngine; public class Example : MonoBehaviour{ public void ExampleMethod(GDTKStatusCondition target) { bool result = target.active; } }Copy