Technical Requirements (ru) Video Demo
Note
Try running the program by double-clicking the downloaded .jar file!
The program will attempt to restart with the proper VM options, but this method does not guarantee success.
-
Download jar for your OS from the latest release or build it yourself.
-
Run it from the command line:
java --add-exports=java.base/java.lang=ALL-UNNAMED --add-exports=java.desktop/sun.awt=ALL-UNNAMED --add-exports=java.desktop/sun.java2d=ALL-UNNAMED -jar sc-editor.jar
Warning
JOGL requires you to pass certain VM options. So do not delete it, otherwise the program will not work.
make runmake buildThe project uses Maven for building.
To build jar containing only the project code (without dependencies) use:
mvn clean packageAnd to build jar file with all dependencies built-in use following command:
mvn clean compile assembly:singleTo build for all Operating Systems:
make release