:mod:`thingz_button_touch` ========================== .. py:module:: thingz_button_touch .. autoapi-nested-parse:: Thingz button touch .. py:class:: ButtonTouch Control Galaxia's touch buttons .. py:method:: is_touched() -> bool :return: True if button is touched, False otherwise :rtype: bool .. py:method:: was_touched() -> bool :return: True if button has been touched since last call, False otherwise :rtype: bool .. py:method:: get_touches() -> int Get the number of touches since the last call :return: The number of touches since the last call :rtype: int .. py:method:: on_touched(callback: Callable[Optional[Button]]) -> None Register a callaback bind to touch event :param Callable[Optional[ButtonTouch]] callback: The function to call when the event occurs. When called the button will be passed as paramater