-
-
Notifications
You must be signed in to change notification settings - Fork 556
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 allget
calls 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;
}