Skip to main content
Creates a tracked ImGui window record and returns an ImGuiWindow object. The title argument defaults to “REAL_IM_UI” when omitted or nil. The title must be unique among currently tracked ImGui windows; creating another tracked window with the same title raises a Lua error.

Syntax

Arguments

Returns

Types

ImGuiWindow

Handle returned by imgui.create. Control-building methods return the same handle so calls can be chained.

Example

Create one tracked ImGui window and append controls to the returned ImGuiWindow userdata.