Re: in 2D view, an option for a level to display all/some levels below
by mts749 » Sat Dec 30, 2023 4:38 pm
Many thanks. I implemented as you suggested and made a minor tweak:
Code: Select all
Level selectedLevel = this.home.getSelectedLevel();
if (selectedLevel.getName().equals("All")) {
return true;
}
...
This way I only have one level that exhibits that behaviour.
I do have one question though. I managed to compile and run SweetHome3D from within Eclipse but was not able to generate an executable jar file to run independently. I'm pretty sure the issue is related to missing libraries. Is there any documentation on how to generate an executable?