EnableMenu - InputEnableLayer
Revision as of 16:54, 12 February 2013 by imported>Plplecuyer (Created page with "Category:Scripting Category:Papyrus '''Member of:''' InputEnableLayer Script Enables or disables the player's ability to use the menu on this layer. == Syntax == <s...")
Member of: InputEnableLayer Script
Enables or disables the player's ability to use the menu on this layer.
Syntax
Function EnableMenu(abEnable = true) native
Parameters
- abEnable: If true, enables menu access. Otherwise disables it.
- Default: True
Return Value
None.
Examples
; Enable menu
myLayer.EnableMenu()
; Disable activation
InputEnableLayer myLayer = InputEnableLayer.Create()
myLayer.EnableMenu(false)