GetValueInt - GlobalVariable

From the Fallout4 CreationKit Wiki
Revision as of 11:31, 11 September 2016 by imported>Goggle (→‎Examples: Shorthand for GetValue(xx) as int)
Jump to navigation Jump to search

Member of: GlobalVariable Script

Gets the current value of this global object, cast as an int for convenience.

Syntax

int Function GetValueInt()

Parameters

None.

Return Value

The current value the global holds, cast as an int.

Examples

; Obtain the current time of day
int timeOfDay = TimeOfDayGlobalProperty.GetValueInt()

Note

  • Slightly faster use GetValue - GlobalVariable and cast as Int, as this function calls that one and then casts the value to int.

See Also