ImNodes icon indicating copy to clipboard operation
ImNodes copied to clipboard

Node graph implementation for Dear ImGui. Used in https://github.com/rokups/rbfx

Results 14 ImNodes issues
Sort by recently updated
recently updated
newest added

I'm using visual Studio 2022 and the latest version of ImGui Does anyone know how to fix this?

I pasted the sample code on the readme. I got this imgui/ImNodesEz.cpp:125: bool ImNodes::Ez::BeginNode(void*, const char*, ImVec2*, bool*): Assertion `GContext != nullptr' failed. Aborted (core dumped) something something context. OK....

```cpp if (ImNodes::Ez::BeginNode(node, node->m_var_name, &node->m_pos, &node->m_selected)) { ImGui::Separator(); //here //other drawings } ``` results to ![2021-03-14_12-15](https://user-images.githubusercontent.com/17418737/111057016-145a1500-84bf-11eb-88f9-a7225b559ade.png) More testing shows that anywhere the ImGui::Separator() is called as long as inside the...

bug

It's not 2019 anymore :trollface:

help wanted

Imagine I want to add a context menu on node content. In the sample.cpp: ```cpp // Custom node content may go here ImGui::Text("Content of %s", node->Title); const char* names[5] =...

In the example, I can only connect an input slot with an output slot. However, I want some general slots beyond input and output which can be connected each other...

Hi, first of all I want to thank the developers for efforts and spent time for lib dev! Is it possible to add picture to the node background and custom...

Hi, im looking for node graph libraries that i can use for a school project. Ive been keeping an eye on this library for a while now and i have...

HI! I noticed a bug in `ImNodes::EndCanvas()` function. It's reset the single_selected_node to null if ctrl and shift keys not clicked, So when I click a node with mouse only,...

need more info

Hi, I would like to share a compute graph made with ImNodes in LuaJIT-ImGui All above line https://github.com/sonoro1234/LuaJIT-ImGui/blob/master/examples/cimnodes_r_graph_sample.lua#L378 are the classes needed for the example, below this line there is...

showcase