Difference between revisions of "OnControlUp - ScriptObject"
Jump to navigation
Jump to search
imported>Kyllagdrgn |
imported>Qazaaq (Removed input script) |
||
Line 9: | Line 9: | ||
== Syntax == | == Syntax == | ||
<source lang="papyrus"> | <source lang="papyrus">Event OnControlUp(string control, float time)</source> | ||
Event OnControlUp(string control, float | |||
</source> | |||
== Parameters == | == Parameters == | ||
*control: The control press. | *control: The control press. | ||
*time: The amount of time the control was held down in seconds. | |||
== Examples == | == Examples == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
Event OnControlUp(string control, float | Event OnControlUp(string control, float time) | ||
If (control == "Forward") | |||
Debug.Trace("The Forward control was released after" + time + " seconds.") | |||
EndIf | |||
EndEvent | EndEvent | ||
</source> | </source> | ||
== Notes == | == Notes == | ||
Line 33: | Line 29: | ||
== See Also == | == See Also == | ||
*[[ScriptObject Script]] | *[[ScriptObject Script]] | ||
*[[RegisterForControl - ScriptObject]] | *[[RegisterForControl - ScriptObject]] | ||
*[[UnregisterForControl - ScriptObject]] | *[[UnregisterForControl - ScriptObject]] | ||
*[[OnControlDown - ScriptObject]] | *[[OnControlDown - ScriptObject]] |
Revision as of 15:41, 6 April 2017
F4SE Member of: ScriptObject Script
Minimum required F4SE Version: 0.3.0
Listens for the release of game controls that have been registered via RegisterForControl.
Syntax
Event OnControlUp(string control, float time)
Parameters
- control: The control press.
- time: The amount of time the control was held down in seconds.
Examples
Event OnControlUp(string control, float time)
If (control == "Forward")
Debug.Trace("The Forward control was released after" + time + " seconds.")
EndIf
EndEvent
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.