Category
ImGui
Immediate-mode windows and callback-driven controls.Category guide
Overview
Use this overview to understand the category before opening a specific function.- See what this group of functions is meant to solve.
- Compare function names and descriptions in one table.
- Open a function for syntax, arguments, returns, and examples.
ImGui
Available functions
| Function | Description |
|---|---|
imgui.create | Creates a tracked ImGui window record and returns an ImGuiWindow object. |
imgui.setvsync | Updates the ImGui renderer's vertical-synchronization preference. |
ImGuiWindow.Button | Appends a button element to an ImGuiWindow and stores the callback. |
ImGuiWindow.Checkbox | Appends a checkbox element to an ImGuiWindow. |
ImGuiWindow.CollapsingHeader | Appends a collapsing header start marker, immediately calls the content callback with the same ImGuiWindow object so it can append nested elements, then appends a header end marker. |
ImGuiWindow.ColorPicker | Appends a RGBA color editor to an ImGuiWindow and stores the callback. |
ImGuiWindow.destroy | Destroys an ImGuiWindow. |
ImGuiWindow.InputText | Appends a single-line ImGui InputText element to an ImGuiWindow and stores the callback. |
ImGuiWindow.SameLine | Adds a layout marker so the next rendered item can continue on the same row. |
ImGuiWindow.Separator | Adds a separator line to the window. |
ImGuiWindow.SliderFloat | Adds a floating-point slider to the window. |
ImGuiWindow.SliderInt | Adds an integer slider to the window. |
ImGuiWindow.Text | Adds non-interactive text to the window. |