JFX Gui bridge for JME with usefull utilities for common usecases
License is the New BSD License (same as JME3) http://opensource.org/licenses/BSD-3-Clause
--add-exports javafx.graphics/com.sun.javafx.embed=ALL-UNNAMED --add-exports javafx.graphics/com.sun.javafx.stage=ALL-UNNAMED --add-exports javafx.graphics/com.sun.javafx.cursor=ALL-UNNAMED --add-exports javafx.graphics/com.sun.glass.ui=ALL-UNNAMED --add-exports javafx.graphics/com.sun.javafx.application=ALL-UNNAMEDrepositories { maven { url "https://dl.bintray.com/javasabr/maven" } } dependencies { compile 'com.jme3:jfx:2.0.0' }<repositories> <repository> <snapshots> <enabled>false</enabled> </snapshots> <id>bintray-javasabr-maven</id> <name>bintray</name> <url>https://dl.bintray.com/javasabr/maven</url> </repository> </repositories> <dependency> <groupId>com.jme3</groupId> <artifactId>jfx</artifactId> <version>2.0.0</version> </dependency> var imageView = new ImageView(); var settings = JmeToJfxIntegrator.prepareSettings(new AppSettings(true), 60); var application = new MySomeApplication(); JmeToJfxIntegrator.startAndBindMainViewPort(application, imageView, Thread::new); public class MyApplication extends SimpleApplication { private JmeFxContainer container; @Override public void simpleInitApp() { container = JmeFxContainer.install(this, getGuiNode()); var button = new Button("BUTTON"); var rootNode = new Group(button); var scene = new Scene(rootNode, 600, 600); scene.setFill(Color.TRANSPARENT); container.setScene(scene, rootNode); getInputManager().setCursorVisible(true); } @Override public void simpleUpdate(float tpf) { super.simpleUpdate(tpf); // we decide here that we need to do transferring the last frame from javaFX to jME if (container.isNeedWriteToJme()) { container.writeToJme(); } } }Also, you can look at some examples in the tests package: