GlobalVariable Script

From the Fallout4 CreationKit Wiki
Revision as of 00:26, 13 July 2016 by imported>Qazaaq
Jump to navigation Jump to search

Extends: Form Script

Editor: Global

Script for the manipulation of global variable objects.

Definition

ScriptName GlobalVariable extends Form Native Hidden

Properties

  • float Value [read-write]: The current value of this global variable object.

Global Functions

None

Member Functions

  • float Function GetValue()
    • Returns this global variable's current value.
  • int Function GetValueInt()
    • Returns this global variable's current value cast as an int.
  • float Function Mod(float afHowMuch)
    • Modifies this global variable's value in a more thread-safe way.
  • Function SetValue(float afNewValue)
    • Sets this global variable's current value.
  • Function SetValueInt(int aiNewValue)
    • Sets this global variable's current value to the specified int.

Events

None

See Also