ScriptForge icon indicating copy to clipboard operation
ScriptForge copied to clipboard

Unity 2019 ScriptForge UI

Open K0ST4S opened this issue 6 years ago • 2 comments

In Unity 2019.3.0a10 ScriptForge UI window doesn't load. It only loads Script Forge V2.5.2 header logo and no widgets.

K0ST4S avatar Sep 22 '19 20:09 K0ST4S

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();
        }

K0ST4S avatar Sep 22 '19 20:09 K0ST4S

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?

ByronMayne avatar Sep 24 '19 03:09 ByronMayne