using System.Collections; using System.Collections.Generic; using UnityEngine; namespace MBT { [AddComponentMenu("")] public class BoolVariable : Variable { protected override bool ValueEquals(bool val1, bool val2) { return val1 == val2; } } [System.Serializable] public class BoolReference : VariableReference { public BoolReference(VarRefMode mode = VarRefMode.EnableConstant) { SetMode(mode); } public BoolReference(bool defaultConstant) { useConstant = true; constantValue = defaultConstant; } public bool Value { get { return (useConstant)? constantValue : this.GetVariable().Value; } set { if (useConstant) { constantValue = value; } else { this.GetVariable().Value = value; } } } } }