Description
Hi,
I had the need to use ImPlot so went down the rabbit hole of getting it to work with ImGuiNet. The concept is fairly simple:
(1) Compile native cimplot dll files
to compile updated cimplot files I forked and modified the ImGui.NET-nativebuild repo. My version is available here (https://github.com/tomvdb/ImGui.NET-nativebuild)
(2) Generate new implot cs code using the codegenerator with updated definitions from cimplot
I then forked ImGui.NET and added the new dll files and cimplot definitions. The imgui controller required an update to set the implot context, but from there I could then load the implot demo window as well as create a seperate window with a barchart.
My forked version of ImGui.Net is at (https://github.com/tomvdb/ImGui.NET)
I have only tried native windows builds for implot for now.
Its probably all too messy for a PR, but that is where I'm at if its useful for someone