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