using System.Collections; using System.Collections.Generic; using UnityEngine; using MyBT; #if UNITY_EDITOR using UnityEditor; [CustomEditor(typeof(NamedOutline))] public class NamedOutlineInspector : ComponentHandlerInspector { } #endif public class NamedOutline : ComponentHandler { public override string TypeLabel() { return "NamedOutline"; } public override string ContentLabel() { UpdateComponent(); return ""; } public override void UpdateComponent() { base.UpdateComponent(); outlineComponent = GetComponent(); } public override void Enable(NodeState nodeState) { if ((nodeState == NodeState.FirstRun) || (nodeState == NodeState.Running)) { outlineComponent.enabled = true; Task.SetSucceeded(); } } public override void Disable(MyBT.NodeState nodeState) { if ((nodeState == NodeState.FirstRun) || (nodeState == NodeState.Running)) { outlineComponent.enabled = false; Task.SetSucceeded(); } } public override string[][] helpText { get { return new string[][] { new string[] {"Enable", $"BTC.Enable(\"{gameObject.name}\")"}, new string[] {"Disable", $"BTC.Disable(\"{gameObject.name}\")"} }; } } public Outline outlineComponent; }