summaryrefslogtreecommitdiff
path: root/GameCode/SimulatedSelection.cs
diff options
context:
space:
mode:
authorchai <215380520@qq.com>2023-10-27 11:05:14 +0800
committerchai <215380520@qq.com>2023-10-27 11:05:14 +0800
commit766cdff5ffa72b65d7f106658d1603f47739b2ba (patch)
tree34d7799a94dfa9be182825577583c0fa6dc935f7 /GameCode/SimulatedSelection.cs
+ init
Diffstat (limited to 'GameCode/SimulatedSelection.cs')
-rw-r--r--GameCode/SimulatedSelection.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/GameCode/SimulatedSelection.cs b/GameCode/SimulatedSelection.cs
new file mode 100644
index 0000000..d80866b
--- /dev/null
+++ b/GameCode/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;
+ }
+}