Editor Ground Model Debug Helper
Registers a menu item in the editor's Debug menu group that opens the Ground Model Debug window (provided by `util_groundModelDebug`).
Registers a menu item in the editor's Debug menu group that opens the Ground Model Debug window (provided by util_groundModelDebug).
Module Overview
| Aspect | Detail |
|---|---|
| File | extensions/editor/groundModelDebugHelper.lua |
| Returns | M table |
| Role | Menu integration for ground model debugging |
Public Functions
| Function | Signature | Description |
|---|---|---|
M.onEditorInitialized | () | Adds "GroundModel Debug" to the editor Window menu under the Debug group |
Menu Registration
-- Adds to Window > Debug > GroundModel Debug
editor.addWindowMenuItem("GroundModel Debug", onWindowMenuItem, {groupMenuName = 'Debug'})When clicked, calls extensions.util_groundModelDebug.openWindow() to show the debug visualization window.
See Also
- Editor AI Tests - Related reference
- Editor AI Visualization - Related reference
- Editor – Assembly Spline Tool - Related reference
- World Editor Guide - Guide
Editor Gizmo Helper
Tracks the visibility state of the editor's 3D axis gizmo (translate/rotate/scale manipulator). Ensures the gizmo selection is cleared when the gizmo stops being drawn.
Editor Headless Editor Test
Demonstrates the headless editor mode API - a mode that hides standard editor chrome (menus, toolbars) and lets a tool provide its own UI. Includes a test tool window and custom toolbar.