Skip to content

JavaSaBr/JME3-JFX

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JME3-JFX

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

java compiler options
--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-UNNAMED

How to add the library to your project

repositories { maven { url "https://dl.bintray.com/javasabr/maven" } } dependencies { compile 'com.jme3:jfx:2.0.0' }

Maven

<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>

How to integrate jME application to JavaFX ImageView:

 var imageView = new ImageView(); var settings = JmeToJfxIntegrator.prepareSettings(new AppSettings(true), 60); var application = new MySomeApplication(); JmeToJfxIntegrator.startAndBindMainViewPort(application, imageView, Thread::new);

How to integrate javaFX UI to jME application:

 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:

About

JFX Gui bridge for JME with usefull utilities for common usecases

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%