keyDownEventList

Returns the list of key down events of the control.

Signatures

  •    ParamateControls.<ControlName>.keyDownEventList

(getter)

Example

 const keyDownEvents =  ParamateControls.<ControlName>.keyDownEventList;
 

Return value

A list of objects that represent the key down event handler:

[
   {
     key: string, // Keyboard key (e.g., 'K')
     callback: (e) => void (e.g., (e) => console.log(e.code))
    },
   ...
]