Difference between revisions of "SetGameSettingFloat - Game"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
(added notes and descriptions)
imported>Qazaaq
(Undo revision 10984 by Scrivener07 (talk))
Line 3: Line 3:
{{Template:Papyrus:RequiredF4SE|version=0.3.2}}
{{Template:Papyrus:RequiredF4SE|version=0.3.2}}


Sets the float value of a [[Game Setting]].  
Placeholder Description.


== Syntax ==
== Syntax ==
Line 11: Line 11:


== Parameters ==
== Parameters ==
*asSetting: The setting name and section.
*asSetting: Placeholder Description.
*afValue: The new value to use.
*afValue: Placeholder Description.


== Return Value ==
== Return Value ==
Line 19: Line 19:
== Examples ==
== Examples ==
<source lang="papyrus">
<source lang="papyrus">
Utility.SetINIFloat("fDefault1stPersonFOV:Display", 100.0)
; Placeholder Code.
</source>
</source>
== Notes ==
*Changes to INI settings require including the section that the setting is in.


== See Also ==
== See Also ==

Revision as of 22:20, 21 December 2018

This article has been flagged as incomplete.
Please help improve the wiki by learning how to contribute.

F4SE Member of: Game Script
Requires F4SE version 0.3.2 or higher.

Placeholder Description.

Syntax

Function SetGameSettingFloat(string asSetting, float afValue) Native Global

Parameters

  • asSetting: Placeholder Description.
  • afValue: Placeholder Description.

Return Value

  • None

Examples

; Placeholder Code.

See Also