Michał Cichoń

Results 177 comments of Michał Cichoń

Yes, this is normal. `QueryNewLink` is covering two cases: - droping link from pin to background, which allow to open menu or create new node at drop point - connecting...

Node editor is build on top of ImGui. As long as game engine has it hooked up you can use it. In fact I tried to make editor to act...

Node Editor is build to run using your objects. This mean I assume you have in your code data you want to edit using nodes. This is out of the...

Can you provide a repro? So far I didn't manage to not make it work.

`ed::Begin` does not create own window. Can you try to enclose code in `OnFrame()` in `ImGui::Begin()`/`ImGui::End()`?

Hi. Node Editor will use version of ImGui you're using. If your code is based on docking branch of ImGui, Node Editor will work fine there.

> Is it possible to move out this functions from imgui? It is not possible (yet) to make it separate. Layouts need to tap into one or two ImGui internal...

I made docking branch with layouts [docking-layout](https://github.com/thedmd/imgui/tree/docking-layout). Tested editor with it and it works as expected. ![image](https://user-images.githubusercontent.com/1197433/129270053-ec1138ba-1d1f-4338-9f1d-68c1f7bd50bf.png) You may hit an assertion in DrawIcon. Just is case this is a...

@up-to-you , @crolando Can you checkout an updated version of `develop` branch? I was tinkering with HiDPI support there and I think I got it working both on Windows and...