GE Lua Documentation

Press F to search!

OpenPopup1

Definition


-- @/lua/common/extensions/ui/imgui_gen_luaintf.lua:885
function M.OpenPopup1(string_str_id, ImGuiPopupFlags_popup_flags)
  if ImGuiPopupFlags_popup_flags == nil then ImGuiPopupFlags_popup_flags = 0 end
  if string_str_id == nil then log("E", "", "Parameter 'string_str_id' of function 'OpenPopup1' cannot be nil, as the c type is 'const char *'") ; return end
  imgui.OpenPopup1(string_str_id, ImGuiPopupFlags_popup_flags)
end

Callers

@/lua/common/extensions/ui/imgui_gen_luaintf.lua
  if string_str_id == nil then log("E", "", "Parameter 'string_str_id' of function 'OpenPopup1' cannot be nil, as the c type is 'const char *'") ; return end
  imgui.OpenPopup1(string_str_id, ImGuiPopupFlags_popup_flags)
end
@/lua/common/extensions/ui/imgui_custom_luaintf.lua
  function M.OpenPopup(string_str_id, ImGuiPopupFlags_popup_flags)
    return M.OpenPopup1(string_str_id, ImGuiPopupFlags_popup_flags)
  end