hi there,
i wonder how to create a diagram like
this Unity Asset Store - The Best Assets for Game Making
or that Unity Asset Store - The Best Assets for Game Making
is there a c# library out there or is a unity plugin avaiable to use ?
hi there,
i wonder how to create a diagram like
this Unity Asset Store - The Best Assets for Game Making
or that Unity Asset Store - The Best Assets for Game Making
is there a c# library out there or is a unity plugin avaiable to use ?
On most cases these node graphs are drawing using the regular GUI and EditorGUI utility classes. I have seen a number of approaches to drawing the connecting curves, but the most common approach seems to be Handles.DrawBezier.
Here is a really simple example:
http://forum.unity3d.com/threads/189230-Simple-node-editor
Also, if this is just for your project (rather than for an asset) then you might want to use something like this:
http://forum.unity3d.com/threads/121708-The-Spaghetti-Machine-A-generic-graph-editor-RELEASED-v1-11
I hope that this helps!
yes, thank you very much !!