Keys::isDown
Revision as of 21:58, 13 May 2019 by CommanderDonkey (talk | contribs)
Returns true if the key specified is pressed. Otherwise, returns false.
Parameters
- keycode - code of the key (Number).
Example
An interval that runs every half-second and outputs the state of the F2 key (pressed or not).
Client-Side
setInterval(() => {
if (mp.keys.isDown(113) === true) { // 113 is the key code for F2
mp.gui.chat.push('F2 key is pressed!');
} else {
mp.gui.chat.push('F2 key is not pressed!');
}
}, 500);