EnableMenu - InputEnableLayer

From the Fallout4 CreationKit Wiki
Revision as of 17: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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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)

See Also