- Found in:
- SKSE
eventOnControlDown(stringcontrol)
Description
Wiki Description
Listens for the pressing of game controls that have been registered via Form.RegisterForControl(...).
Caveats
CK Wiki - Notes
- If multiple controls are registered, you'll want to differentiate in the event body as demonstrated above. If only one key will be registered for the form, such differentiation is not necessary.
Parameters
stringcontrol
CK Wiki Description
The control press.
Examples
Event OnControlDown(string control)
If control == "Forward"
Debug.Trace("The player is pressing the forwards control.")
EndIf
EndEventAuto-Generated Example
Scriptname MyCoolScript extends Form
event OnControlDown(string control)
Debug.trace("Event received - OnControlDown: control = " + control)
endEventRelated Pages
- Form
- Input
- Form.RegisterForControl(...)
- Form.UnregisterForControl(...)
- Form.UnregisterForAllControls()
- Form.OnControlUp(...)
