Difference between revisions of "SetGameSettingBool - Game"
Jump to navigation
Jump to search
added description
imported>Qazaaq (added f4se member) |
imported>Mr Stealyogir (added description) |
||
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 [[SetINIBool - Utility|SetINIBool]]. | |||
== Syntax == | == Syntax == | ||
Line 19: | Line 21: | ||
== Examples == | == Examples == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
; | ;Disables blinking while talking. | ||
Game.SetGameSettingBool("bAllowBlinksDuringSpeech", false) | |||
</source> | </source> | ||