Combo(name, table, index, function)

A default combo (custom made for more simplicity)

local items = { "Option A", "Option B", "Option C", "Option D" }
local combo_index1 = 0
ImGui.Combo("Combo1 ", items, combo_index1, function(idx, label)
	log.info("Combo 1" .. " selected " .. label)
end)

Last updated