IsVATSControlsEnabled - Game

Revision as of 14:13, 14 October 2013 by imported>RobinHood70 (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Game Script Checks to see if VATS is currently enabled or not. == Syntax == <source lang="papyrus"> bool Functi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Game Script

Checks to see if VATS is currently enabled or not.

SyntaxEdit

bool Function IsVATSControlsEnabled() native global

ParametersEdit

None.

Return ValueEdit

If the VATS controls are currently enabled or not.

ExamplesEdit

; Can the player use VATS?
if Game.IsVATSControlsEnabled()
  Debug.Trace("Player can use VATS!")
endIf

See AlsoEdit