making an interface for a ScriptProcessor?
-
If I set the dimensions for a script processor using
Content.makeFrontInterface(700, 200);
it works nicely, but as soon as I open that project again, the interface is completely gone.
It shows nothing, then I have to comment out that line and recompile for getting the interface back (not with the right dimensions though), and then apply the same line again to set the right dimensions.Is this a bug, or am I doing something wrong?
When opening the project
After commenting out the Content.makeFrontInterface(700, 200); and recompiling the project
I'm on the develop branch from 26/11
-
@ulrik You can only have one front interface and that script is added automatically in the latest versions.
-
Use
Content.setHeight()
/Content.setWidth()
instead. -
@christoph-hart @d-healey thank you!