GE Lua Documentation

Press F to search!

Combo3

Definition


-- @/=[C]:-1
function Combo3(...)

Callers

@/lua/common/extensions/ui/imgui_gen_luaintf.lua
end
function M.Combo3(string_label, int_current_item, functionPtr_items_getter, void_data, int_items_count, int_popup_max_height_in_items)
  if int_popup_max_height_in_items == nil then int_popup_max_height_in_items = -1 end
  if void_data == nil then log("E", "", "Parameter 'void_data' of function 'Combo3' cannot be nil, as the c type is 'void *'") ; return end
  return imgui.Combo3(string_label, int_current_item, functionPtr_items_getter, void_data, int_items_count, int_popup_max_height_in_items)
end