diff options
author | chai <chaifix@163.com> | 2021-04-02 19:07:01 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-04-02 19:07:01 +0800 |
commit | 6b25723ca33a657882588b2cc3a58101bb9d33e6 (patch) | |
tree | fa79c1e553f58586e4c659d0e71933f9f6ae3894 /Assets/Scripts/CapsuleButton.cs | |
parent | b1276a1b76ac3b87add90e0c6b887d5afea1cfea (diff) |
+misc
Diffstat (limited to 'Assets/Scripts/CapsuleButton.cs')
-rw-r--r-- | Assets/Scripts/CapsuleButton.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Assets/Scripts/CapsuleButton.cs b/Assets/Scripts/CapsuleButton.cs index 9adee0f..8d19868 100644 --- a/Assets/Scripts/CapsuleButton.cs +++ b/Assets/Scripts/CapsuleButton.cs @@ -8,17 +8,17 @@ public class CapsuleButton : MonoBehaviour, IPointerDownHandler, IPointerUpHandl { public virtual void OnPointerClick(PointerEventData eventData) { - Debug.Log("CapsuleButton.OnPointerClick"); + // Debug.Log("CapsuleButton.OnPointerClick"); } public virtual void OnPointerUp(PointerEventData eventData) { - Debug.Log("CapsuleButton.OnPointerUp"); + // Debug.Log("CapsuleButton.OnPointerUp"); } public virtual void OnPointerDown(PointerEventData eventData) { - Debug.Log("CapsuleButton.OnPointerDown"); + // Debug.Log("CapsuleButton.OnPointerDown"); } } |