ScriptForge
ScriptForge copied to clipboard
Unity 2019 ScriptForge UI
In Unity 2019.3.0a10 ScriptForge UI window doesn't load. It only loads Script Forge V2.5.2 header logo and no widgets.
I found the solution to be removing BegingArea and EndArea Editor methods. Now my ScriptableForgeEditor.cs OnInspectorGUI() method looks like this:
public override void OnInspectorGUI()
{
DrawButtons();
DrawWidgets();
}
Hey KOST4S,
I am not going to lie the code for Script Forge is not really well written haha. It was one of my original projects I worked on when learning Unity Editor so there are a lot of weird parts. I am surprised it has worked this long with no issues. Was there anything else you encountered?