ImGuiWindow:Separator Synchronous

Add a thin divider between controls. It helps a crowded panel read as a few related groups without creating a new window.

Syntax
Luau
ImGuiWindow:Separator() -> ImGuiWindow

Parameters

Call this method with a ImGuiWindow receiver. The colon supplies self implicitly; a dot call must pass the receiver explicitly.

This function takes no arguments.

Returns

ImGuiWindow

The same ImGuiWindow handle, so more controls can be added with another method call.

Example

Example
Luau
local window = imgui.create("Example controls")
window:Text("Appearance")
window:Separator()
window:Text("Import and export")
Kawaii documentation