ImGui.NET
ImGui.NET copied to clipboard
An ImGui wrapper for .NET.
We can't move a window out of the viewport in the XNA sample. Docking is working fine. I tried to find the issue in the renderer but haven't found the...
I'm trying to integrate imgui.net in my game engine, and I have a plugin system set up. I initialize imgui.net in my engine dll, but when I load a plugin...
This is leading to compiling errors with newer versions of Unity's DOTS packages in my case but I'm sure this could be a problem for other people outside of Unity...
Recently ImGui introduced an option to enable full unicode support by using 32 bit ImWchar. This requires adding `IMGUI_USE_WCHAR32` define in `imconfig.h`. It would be nice if ImGui.NET switched to...
The current implementation only allows a single `float`: ```cs PlotHistogram(string label, ref float values, int values_count) PlotHistogram(string label, ref float values, int values_count, int values_offset) [...] PlotLines(string label, ref float...
https://github.com/mellinoe/ImGui.NET/blob/9b74ee4f797daeb8468d1ed9b8a5c0e804f9e52e/src/ImGui.NET/Generated/ImGui.gen.cs#L13250 In the original ImGui, `ImGui::Text` is meant to be used in the "`printf` way". Obviously ImGui.NET cannot support C or C++'s native variadic parameter list, so we can't pass...
I have abstracted the device and some window classes on this branch. If you see value, feel free to pick this up. Branch: https://github.com/richardlalancette/ImGui.NET/tree/simple-empty-program [Program](https://github.com/richardlalancette/ImGui.NET/blob/simple-empty-program/src/ImGui.NET.SampleProgram/Program.cs) [Device](https://github.com/richardlalancette/ImGui.NET/blob/simple-empty-program/src/ImGui.NET.SampleProgram/Device.cs) [AbstractImController](https://github.com/richardlalancette/ImGui.NET/blob/simple-empty-program/src/ImGui.NET.SampleProgram/AbstractImController.cs) [ImWindowController](https://github.com/richardlalancette/ImGui.NET/blob/simple-empty-program/src/ImGui.NET.SampleProgram/ImWindowController.cs)
I'm currently using ImGui.NET, but for what I'm looking to build, I'd need something like [this](https://github.com/Nelarius/imnodes). Realistically, as someone whose experience doesn't go much further than C#, what are my...
I wanna know is there is a way to attach ImGUI window to existing GLFW.Net window?
I don't know if this issue has been posted before, or if this issue actually belongs to the c library of imgui, but here is the issue: I am trying...