Represents a command to toggle the Unreal Overlay Interface Menu.
This action sends a message to the Metabox API to toggle the visibility of the Unreal overlay UI.
What does it unlock?
Shows the overlay interface elements. Displays UI controls and buttons overlaid on the 3D scene.
Practical Application
Toggles viewport overlay controls (buttons overlaid on the 3D scene). Takes a boolean.
Use ShowOverlayInterface(false) alongside ShowEmbeddedMenu(false) when building fully custom UI
that replaces all native MetaBox controls.
AI Coding Best Practices
In standalone mode, overlays are already hidden. In default mode, call new ShowOverlayInterface(false)
early in initialization to prevent flash of native UI. Always pair with ShowEmbeddedMenu(false) for clean custom UI.
Pass true to restore if entering a mode that uses native controls.
Represents a command to toggle the Unreal Overlay Interface Menu. This action sends a message to the Metabox API to toggle the visibility of the Unreal overlay UI.
What does it unlock?
Shows the overlay interface elements. Displays UI controls and buttons overlaid on the 3D scene.
Practical Application
Toggles viewport overlay controls (buttons overlaid on the 3D scene). Takes a boolean. Use
ShowOverlayInterface(false)alongsideShowEmbeddedMenu(false)when building fully custom UI that replaces all native MetaBox controls.AI Coding Best Practices
In standalone mode, overlays are already hidden. In default mode, call
new ShowOverlayInterface(false)early in initialization to prevent flash of native UI. Always pair withShowEmbeddedMenu(false)for clean custom UI. Pass true to restore if entering a mode that uses native controls.Example
Param: visible
A flag indicating whether the Unreal overlay UI should be visible.