OnControlDown - ScriptObject

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.

SyntaxEdit

Event OnControlDown(string control)

ParametersEdit

  • control: The control press.

ExamplesEdit

Event OnControlDown(string control)
   If (control == "Forward")
      Debug.Trace("The player is pressing the forwards control.")
   EndIf
EndEvent

NotesEdit

  • 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.

See AlsoEdit