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