jchanvfx / NodeGraphQt

Node graph framework that can be re-implemented into applications that supports PySide2
http://chantonic.com/NodeGraphQt/
MIT License
1.26k stars 256 forks source link

Stability? #292

Closed ArEnSc closed 1 year ago

ArEnSc commented 1 year ago

Hey do you support execution and serialization? or does the support just stop at the ui? thanks!

jchanvfx commented 1 year ago

Hi @ArEnSc,

Currently this is just a framework for a node graph ui that can be customized so you'll need to implement execution logic yourself, as for the serialization there are a few functions in the NodeGraph class you can call that'll serialize the session to json file or to a dict.

https://jchanvfx.github.io/NodeGraphQt/api/html/graph.html#NodeGraphQt.NodeGraph.save_session https://jchanvfx.github.io/NodeGraphQt/api/html/graph.html#NodeGraphQt.NodeGraph.serialize_session

Cheers, Johnny