Background for Fallout 4
Member of the ScriptObject script
eventOnControlUp(stringcontrol, floattime)

Description

Wiki Description

Listens for the release of game controls that have been registered via 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

  1. stringcontrol

    CK Wiki Description

    The control press.

  2. floattime

    CK Wiki Description

    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

Auto-Generated Example

Scriptname MyCoolScript extends ScriptObject

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

Related Pages


Additional References

View this event’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.