Difference between revisions of "Gb.buttons.held"

From Gamebuino Wiki
Jump to: navigation, search
(page creation)
 
m
Line 1: Line 1:
{{DISPLAYTITLE:gb.buttons.held}}
+
{{lowercase}}
 
__NOTOC__
 
__NOTOC__
 
== Description ==
 
== Description ==

Revision as of 2014-05-20T20:05:29

Description

Function used to know when a given button is held for a given duration.

Syntax

gb.buttons.held(button, duration);

Parameters

  • button (byte): the identifier of the button, to choose from BTN_A, BTN_B, BTN_C, BTN_UP, BTN_RIGHT, BTN_DOWN, BTN_LEFT
  • duration (byte): the duration in number of frames (20 frames per second by default)

Returns

  • boolean: returns true if the selected button is held for the given duration. Only returns true once, if you want to it to happen every X frames use gb.buttons.repeat

Example

See also