Gentlymad-Studios / NewGraph

A general node graph solution centered on data management. This is based on the idea to visualize complex data structures as graph networks without having to modify already established data classes.
MIT License
246 stars 19 forks source link

Monobehaviour-based GraphModel #8

Closed leissler closed 1 year ago

leissler commented 1 year ago

Using a preprocessor symbol (NEWGRAPH_GRAPHMODEL_MONOBEHAVIOUR), these changes allow switching between a ScriptableObject- and Monobehaviour-based GraphModel.

Doppelkeks commented 1 year ago

Implemented another system to achieve this that does not need preprocessor symbols and allows for both graph types to co-exist. Thank you for the pull request though as it was very helpful in understanding where changes needed to be made.