GE Lua Documentation

Press F to search!

Selectable2

Definition


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

Callers

@/lua/common/extensions/ui/imgui_gen_luaintf.lua
end
function M.Selectable2(string_label, bool_p_selected, ImGuiSelectableFlags_flags, ImVec2_size)
  if ImGuiSelectableFlags_flags == nil then ImGuiSelectableFlags_flags = 0 end
  if bool_p_selected == nil then log("E", "", "Parameter 'bool_p_selected' of function 'Selectable2' cannot be nil, as the c type is 'bool *'") ; return end
  return imgui.Selectable2(string_label, bool_p_selected, ImGuiSelectableFlags_flags, ImVec2_size)
end
@/lua/ge/extensions/util/screenshotCreator.lua
                if not v[2][0] then
                  im.Selectable2(v[3] .. " (" ..v[1] .. ")",v[2])
                end
                if v[2][0] then
                  im.Selectable2(v[3] .. " (" ..v[1] .. ")",v[2])
                end