GE Lua Documentation

Press F to search!

SetWindowSize1

Definition


-- @/lua/common/extensions/ui/imgui_gen_luaintf.lua:132
function M.SetWindowSize1(ImVec2_size, ImGuiCond_cond)
  if ImGuiCond_cond == nil then ImGuiCond_cond = 0 end
  imgui.SetWindowSize1(ImVec2_size, ImGuiCond_cond)
end

Callers

@/lua/common/extensions/ui/imgui_gen_luaintf.lua
  if ImGuiCond_cond == nil then ImGuiCond_cond = 0 end
  imgui.SetWindowSize1(ImVec2_size, ImGuiCond_cond)
end
@/lua/ge/extensions/ui/console.lua
        im.SetWindowPos1(im.ImVec2(winstate[1] or 0,winstate[2] or 0), im.ImGuiCond_Always)
        im.SetWindowSize1(im.ImVec2(winstate[3] or 800,winstate[4] or 600), im.ImGuiCond_Always)
      else