EnableCamSwitch - InputEnableLayer
Jump to navigation
Jump to search
Member of: InputEnableLayer Script
Enables or disables the player's ability to switch camera from first to third and back on this layer.
Syntax[edit | edit source]
Function EnableCamSwitch(abEnable = true) native
Parameters[edit | edit source]
- abEnable: If true, enables camera switching. Otherwise disables it.
- Default: True
Return Value[edit | edit source]
None.
Examples[edit | edit source]
; Enable camera switching
myLayer.EnableCamSwitch()
; Disable camera switching
InputEnableLayer myLayer = InputEnableLayer.Create()
myLayer.EnableCamSwitch(false)