using System.Collections; using System.Collections.Generic; using UnityEngine; namespace BITKit { public class IfGreater : Provider { public float value; public bool inverse; public Provider output; public override float Get() { throw new System.NotImplementedException(); } public override void Set(float t) { output?.Set(t > value ? inverse ? false : true : false); } } }