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