OnControlDown - ScriptObject
Jump to navigation
Jump to search
F4SE Member of: ScriptObject Script
Requires F4SE version 0.3.0 or higher.
Listens for the pressing of game controls that have been registered via RegisterForControl.
Syntax[edit | edit source]
Event OnControlDown(string control)
Parameters[edit | edit source]
- control: The control press.
Examples[edit | edit source]
Event OnControlDown(string control)
If (control == "Forward")
Debug.Trace("The player is pressing the forwards control.")
EndIf
EndEvent
Notes[edit | edit source]
- 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.