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

13 functions
FunctionDescription
imgui.createCreates a tracked ImGui window record and returns an ImGuiWindow object.
imgui.setvsyncUpdates the ImGui renderer's vertical-synchronization preference.
ImGuiWindow.ButtonAppends a button element to an ImGuiWindow and stores the callback.
ImGuiWindow.CheckboxAppends a checkbox element to an ImGuiWindow.
ImGuiWindow.CollapsingHeaderAppends 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.ColorPickerAppends a RGBA color editor to an ImGuiWindow and stores the callback.
ImGuiWindow.destroyDestroys an ImGuiWindow.
ImGuiWindow.InputTextAppends a single-line ImGui InputText element to an ImGuiWindow and stores the callback.
ImGuiWindow.SameLineAdds a layout marker so the next rendered item can continue on the same row.
ImGuiWindow.SeparatorAdds a separator line to the window.
ImGuiWindow.SliderFloatAdds a floating-point slider to the window.
ImGuiWindow.SliderIntAdds an integer slider to the window.
ImGuiWindow.TextAdds non-interactive text to the window.