can_tap_jump

Used in combination with tap_jump_pressed to check if tap jump is pressed.

Example, called from attack_update.gml:

// window 3 transitions into window 4 when pressing jump:
if (window == 3 && (jump_pressed || (tap_jump_pressed && can_tap_jump() ))){
window = 4;
window_timer = 0;
}