Docking : how to open imgui window? #7005
Replies: 3 comments
-
Moving you to a Discussion since you did not read nor fulfill Issues submitting Guidelines. |
Beta Was this translation helpful? Give feedback.
-
ImGui Initialize Code is here
And I tried this code. but I cant see the Test Window.
|
Beta Was this translation helpful? Give feedback.
-
From the Demo Window menu bar, select "Tools" -> "Metrics/Debugger". In that window expand "Windows" and take a closer look. Maybe your window is at a position where you cannot see it, in case you configured it in a strange way first and then those settings got saved. Deleting your imgui.ini might remedy that. If your window isn't listed there, you need to step through your code to find out why it doesn't get submitted. Btw, it's a bad idea to use direct values like "1024" for flags, it just makes code harder to read. and error prone in case those values ever change in a new version. You can and should use the named enum values directly, |
Beta Was this translation helpful? Give feedback.
-
Version/Branch of Dear ImGui
My Issue/Question:
I cant open imgui window in dx11.
what could be the problem?
My code is here
class "cSystem, Camera, Environment" called ImGui.
and only ImGui Demo window can active.
Beta Was this translation helpful? Give feedback.
All reactions