Difference between revisions of "GetGameSettingFloat - Game"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>GigaPoint
imported>Egocarib
m (additional links)
Line 24: Line 24:
== See Also ==
== See Also ==
*[[Game Script]]
*[[Game Script]]
*[[Settings|Game Settings]]
*[[GetGameSettingFloat - Game]]
*[[SetGameSettingFloat - Game]]
*[[GetGameSettingInt - Game]]
*[[GetGameSettingInt - Game]]
*[[SetGameSettingInt - Game]]
*[[GetGameSettingString - Game]]
*[[GetGameSettingString - Game]]
*[[SetGameSettingString - Game]]

Revision as of 01:05, 4 December 2013

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