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.
Luau
ImGuiWindow:Separator() -> ImGuiWindowParameters
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
ImGuiWindowThe same ImGuiWindow handle, so more controls can be added with another method call.
Example
Luau
local window = imgui.create("Example controls")
window:Text("Appearance")
window:Separator()
window:Text("Import and export")