Michał Cichoń

Results 177 comments of Michał Cichoń

Hi, Node editor assume you already have some classes and objects on your side which model what you want to do. Please notice that every NodeId is handled to editor...

> Are the json callbacks and simple functions sort of equal, and I can choose which one I want to use? Or do I have to use the json callbacks...

Thank you for feedback. Node Editor serialize it state to the string without any promise of it being a JSON. That is unlikely to change now, because of the backward...

Hello @SadE54 Node editor provide callbacks to save it state. You may choose to save everything per graph or to save state of individual nodes. You can find that in...

Entire content of node is customizable. You can place labels to serve as title. You can place pins where you need them and orient them to your liking. "Node" is...

Node editor save its state using callback. It can do it per node or for all nodes at once. You can set callback function in `ed::Config` structure, please [see example...

Example always construct blueprint nodes from code and explicitly set their positions. If you comment calls to `ed::SetNodePosition` state of nodes should be read back from json file. If you...

Links does not retain hover or selection colors, they are controlled by the current style. Idea was to keep colors for these states unified across editor. `ax::NodeEditor::End()` is a function...

Idea behind this change is to save visible area and restore view using this rectangle. This way when you open editor in window with different size, you will see same...

@crolando I'm trying to tackle this problem. Let's investigate in more details. `m_Scroll` and `m_Zoom` are internal state of the `NavigationAction`, they were serialized but they lack of necessary information...