GDTKStatusEffect.affecting
public StatsAndEffects affecting { get; set; }Description#
Gets the object being affected by this object
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKStatusEffect target) { StatsAndEffects result = target.affecting; }
}