GetGameSettingFloat - Game

From the CreationKit Wiki
Revision as of 21:42, 3 December 2013 by imported>GigaPoint (→‎Parameters)
Jump to navigation Jump to search

Member of: Game Script

Obtains the value of the specified float game setting

Syntax

float Function GetGameSettingFloat(string asGameSetting) native global

Parameters

  • asGameSetting: The name of the setting to get.

Return Value

None.

Examples

; Print out the value of a game setting to the log
Debug.Trace("fMySetting = " + Game.GetGameSettingFloat("fMySetting"))

See Also