diff options
Diffstat (limited to 'ROUNDS/SimulatedSelection.cs')
-rw-r--r-- | ROUNDS/SimulatedSelection.cs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/ROUNDS/SimulatedSelection.cs b/ROUNDS/SimulatedSelection.cs new file mode 100644 index 0000000..d80866b --- /dev/null +++ b/ROUNDS/SimulatedSelection.cs @@ -0,0 +1,33 @@ +using UnityEngine; +using UnityEngine.UI; + +public class SimulatedSelection : MonoBehaviour +{ + private HoverEvent hoverEvent; + + private Button button; + + private void Start() + { + hoverEvent = GetComponent<HoverEvent>(); + button = GetComponent<Button>(); + } + + private void OnDisable() + { + Deselect(); + } + + public void Select() + { + hoverEvent.OnPointerEnter(null); + button.targetGraphic.color = button.colors.highlightedColor; + } + + public void Deselect() + { + hoverEvent.OnPointerExit(null); + button.OnDeselect(null); + button.targetGraphic.color = button.colors.normalColor; + } +} |