API ReferenceGE Extensionsflowgraphnodesuiimguielemental
ImGui End
- **Node Name:** `im End`
Overview
- Node Name:
im End - Category:
repeat_instant - File:
extensions/flowgraph/nodes/ui/imgui/elemental/imEnd.lua
Closes an ImGui window opened by an im Begin node. Must always be paired with a corresponding im Begin.
Pin Schema
No pins (empty schema).
Internals
Key Methods
| Method | Description |
|---|---|
work() | Calls im.End() |
How It Works
Simply calls im.End() each frame to close the current ImGui window context. Every im.Begin() call must have a matching im.End() - this node provides that in the flowgraph.
Usage Example
-- Flowgraph chain:
-- [im Begin (title="My Window")]
-- → [im Text]
-- → [im Button]
-- → [im End]
-- Under the hood, im End just calls:
im.End()Key Dependencies
ui_imgui- ImGui bindings
See Also
- im Begin (Flowgraph Node) - Related reference
- im Button (Flowgraph Node) - Related reference
- im Checkbox (Flowgraph Node) - Related reference
- FlowGraph Guide - Guide