-
-
Couldn't load subscription status.
- Fork 624
FXGL 11 Migration Guide
Almas Baimagambetov edited this page Jun 2, 2019
·
2 revisions
- Every
getXXXX()has moved toFXGL.*, sogetInput()is nowFXGL.getInput(). This is to unify allgetcalls and let the IDE help you find classes in FXGL.
You can use FXGL 11 with both modular and non-modular Java 11 projects. For non-modular simply add the library and you are good to go.
For modular, please define module-info.java as follows:
open module app.name {
requires com.almasb.fxgl.all;
}