gesture_tap_count

This function is used to set whether tap counting is enabled or disabled. When set to true tap counting is enabled, and when set to false it is disabled, although you can check which state it is in using the function gesture_get_tap_count(). When enabled, each tap event will have an additional "tapcount" DS map entry which will have registered the number of taps, and when enabled it means that all tap events will be triggered, ie: two taps will trigger both the single tap event and the double tap event, with the single tap event tap count being 1 and the double tap event tap count being 2. The tap count value will be reset to 0 after the time set for a double-tap detection has passed (see the function gesture_double_tap_time()). If tap counting is disabled, then the initial tap won't be registered until the double-tap time has passed and no second tap has been detected. Note that this is enabled by default.

 

Syntax:

gesture_tap_count(enable);

ArgumentType Description
enableBoolean Enable (set to true) or disable (set to false) tap counting.

 

Returns:

N/A

 

Example:

if !gesture_get_tap_count()
{
    getsure_tap_count(true);
}

The above code checks to see if tap counting is enabled and if it is not then it is switched on.