• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Problem - ImGui Critical Failure minimizing overlay (1 Viewer)

Joined
Sep 27, 2020
RedCents
5,994¢
Have the following error occurring when attempting to minimize/collapse a UI overlay. Using the attached script, recreates the issue for me. Run the script. Click the minimize icon (triangle) in the upper left corner.

ImGuiError.png

Now, this could be isolated to me. And if it is, I'm really interested in knowing what I can do to resolve it.

basicUI.Lua:
---@type Mq
local mq = require("mq")
---@type ImGui
require("ImGui")

---@type boolean|nil
local drawUi = true
---@type boolean
local shouldDraw = true

local function display()
    drawUi, shouldDraw = ImGui.Begin("Basic UI #2", drawUi)

    if (shouldDraw) then
        ImGui.Text("This is a UI")
        ImGui.End()
    end
end

ImGui.Register('basicUI', display)

while drawUi do
   mq.delay(100)
end
 

Attachments

  • basicUI.lua
    429 bytes · Views: 4
Last edited:
INI:
---@type Mq
local mq = require("mq")
---@type ImGui
require("ImGui")
---@type boolean|nil
local drawUi = true
---@type boolean
local shouldDraw = true
local function display()
    drawUi, shouldDraw = ImGui.Begin("Basic UI #2", drawUi)
    if shouldDraw then
        ImGui.Text("This is a UI")
      
    end
    ImGui.End()
end
ImGui.Register('basicUI', display)
while drawUi do
    display()
   mq.delay(100)
end
 
Problem - ImGui Critical Failure minimizing overlay

Users who are viewing this thread

Back
Top