I just saw the SceneBuilder integration. That's nice 👍 The current version is unfortunately broken on Windows and macOS because the directory structure does not match the expected lib/app directory. It'd probably also be good to have it intitialized to the standard installation path.
I just checked multiple systems and the default installation looks like this:
Windows
var installDir = System.getProperty("user.home") + "/AppData/Local/SceneBuilder/";
var cfgDir = installDir + "app/";
var cfgFile = cfgDir + "SceneBuilder.cfg"
macOS
var installDir = "/Applications/SceneBuilder.app/";
var cfgDir = installDir + "Contents/app/";
var cfgFile = cfgDir + "SceneBuilder.cfg"
Ubuntu
var installDir = "/opt/scenebuilder/";
var cfgDir = installDir + "lib/app/";
var cfgFile = cfgDir + "SceneBuilder.cfg"
I just saw the SceneBuilder integration. That's nice 👍 The current version is unfortunately broken on Windows and macOS because the directory structure does not match the expected
lib/app
directory. It'd probably also be good to have it intitialized to the standard installation path.I just checked multiple systems and the default installation looks like this:
Windows
macOS
Ubuntu