Function

onKeyPressRepeat

(k: Key | Key[], action: (k: Key) => void): KEventController

Register an event that runs when user presses certain keys (also fires repeatedly when the keys are being held down).

param k- The key(s) to listen for.

param action- The function to run when the event is triggered.

// delete last character when "backspace" is being pressed and held
onKeyPressRepeat("backspace", () => {
    input.text = input.text.substring(0, input.text.length - 1);
});

returns The event controller.

since v3000.1

group Input

kaplay logo

Layer

Miscalenous