Difference between revisions of "OnKeyUp - Form"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>JustinOther
(Initial page creation)
 
imported>JustinOther
m (See also links added)
Line 23: Line 23:
== Notes ==
== Notes ==
*If multiple keys 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.
*If multiple keys 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 Also ==
*[[Form Script]]
*[[Input Script]]
*[[RegisterForKey - Form]]
*[[UnregisterForKey - Form]]
*[[UnregisterForAllKeys - Form]]
*[[OnKeyDown - Form]]

Revision as of 10:25, 3 October 2012

SKSE Member of: Form Script

Listens for the release of keys whose DXScanCodes have been registred via RegisterForKey.

Syntax

Event OnKeyUp(Int KeyCode, Float HoldTime)
EndEvent

Parameters

  • KeyCode: The DXScanCode of a key release to listen for.

Examples

Event OnKeyUp(Int KeyCode, Float HoldTime)
	Debug.Trace("A registered key has been released after being held for " + HoldTime + " seconds")
	If KeyCode == 42
		Debug.Trace("R-Shift is registered and has been released after being held for " + HoldTime + " seconds")
	EndIf
EndEvent

Notes

  • If multiple keys 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 Also