IsLookingControlsEnabled - Game
Revision as of 19:40, 2 August 2011 by imported>Plplecuyer (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' Game Script Checks to see if looking controls are currently enabled or not. == Syntax == <source lang="papyrus"…')
Member of: Game Script
Checks to see if looking controls are currently enabled or not.
SyntaxEdit
bool Function IsLookingControlsEnabled() native global
ParametersEdit
None.
Return ValueEdit
If the looking controls are currently enabled or not.
ExamplesEdit
; Can the player look around?
if Game.IsLookingControlsEnabled()
Debug.Trace("Player can look around!")
endIf