OnControlUp - ScriptObject

F4SE Member of: ScriptObject Script
Requires F4SE version 0.3.0 or higher.

Listens for the release of game controls that have been registered via RegisterForControl.

SyntaxEdit

Event OnControlUp(string control, float time)

ParametersEdit

  • control: The control press.
  • time: The amount of time the control was held down in seconds.

ExamplesEdit

Event OnControlUp(string control, float time)
   If (control == "Forward")
      Debug.Trace("The Forward control was released after" + time + " seconds.")
   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