private void OnPointerClick(object sender, PointerEventArgs e)
    {
        if (Interact == null || thisHand == null)
        {
            return;
        }
        if (debugText)
        {
            Debug.Log("Clicked" + Interact);
        }

        Interact.BroadcastMessage("OnButtonClick", thisHand, SendMessageOptions.DontRequireReceiver);
    }