IsCamSwitchControlsEnabled - Game
From Creation Kit
Member of: Game Script
Checks to see if camera switch controls are currently enabled or not.
Syntax
bool Function IsCamSwitchControlsEnabled() native global
Parameters
None.
Return Value
If the camera switch controls are currently enabled or not.
Examples
; Can the player switch cameras? if Game.IsCamSwitchControlsEnabled() Debug.Trace("Player can switch cameras!") endIf