Difference between revisions of "SetGameSettingFloat - Game"
Jump to navigation
Jump to search
Added Description and example
imported>Qazaaq (Undo revision 10984 by Scrivener07 (talk)) |
imported>Mr Stealyogir (Added Description and example) |
||
Line 3: | Line 3: | ||
{{Template:Papyrus:RequiredF4SE|version=0.3.2}} | {{Template:Papyrus:RequiredF4SE|version=0.3.2}} | ||
This function sets a Game Setting to the specified value. | |||
These include all the variables listed under Gameplay->Settings menu in the creation kit, but *does not* include variables set in the ini files. To set ini variables see [[SetINIFloat - Utility|SetINIFloat]]. | |||
== Syntax == | == Syntax == | ||
Line 19: | Line 21: | ||
== Examples == | == Examples == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
; | ;Set Actor Teleport Fade Seconds | ||
Game.SetGameSettingBool("fActorTeleportFadeSeconds", 1.5) | |||
</source> | </source> | ||