Custom Visual Editor Like UScript Editor

Hello there,

How can I develop a custom visual editor like USccript has. Drag and drop nodes, connecting nodes etc.

I try to understand developing a custom editor from looking at other editors but it is really hard.

Thanks.

It’s hard, you have to get used to the OnGUI system and build it using that. Start simple and build it up. You can use things like the Handles functions even inside an editor window to draw lines. Everything else is GUILayout with areas etc or normal GUI calls.