Class responsible for debugging game objects using a GUI.
The root HTML element to contain the GUI.
const debugContainer = document.getElementById('debug-container');const gameObjectDebugger = new GameObjectDebugger(debugContainer);gameObjectDebugger.render(root);gameObjectDebugger.title("Game Object Debugger"); Copy
const debugContainer = document.getElementById('debug-container');const gameObjectDebugger = new GameObjectDebugger(debugContainer);gameObjectDebugger.render(root);gameObjectDebugger.title("Game Object Debugger");
Renders the GUI for the game objects. The root game object from the GameEngineWindow is rendered with all its children and their behaviors.
Sets the title of the GUI.
The title to set.
Class responsible for debugging game objects using a GUI.
Param: HtmlElement
The root HTML element to contain the GUI.
Example