Background for Skyrim SE
Member of the Form script
eventOnControlUp(stringcontrol, floatholdTime)

Description

Wiki Description

Listens for the release 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.

floatholdTime

CK Wiki Description

The hold time of the control in seconds.


Examples

Event OnControlUp(string control, float HoldTime)
    If control == "Forward"
        Debug.Trace("The Forward control was released after" + HoldTime + " seconds.")
    EndIf
EndEvent

Auto-Generated Example

Scriptname MyCoolScript extends Form

event OnControlUp(string control, float holdTime)
    Debug.trace("Event received - OnControlUp: control = " + control + " holdTime = " + holdTime)
endEvent

Related Pages


Additional References

View this event’s page on the Skyrim Creation Kit Wiki

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.