-
-
Notifications
You must be signed in to change notification settings - Fork 556
Customizing Menus (FXGL 11)
Almas Baimagambetov edited this page Feb 26, 2021
·
3 revisions
FXGL uses the factory pattern to deal with menu objects. To provide your own menu implementation, there are two things of note:
- Create your menu class that extends
FXGLMenu
- Create your factory class that extend
SceneFactory
See CustomGameMenuSample for a standalone sample.
Also see FXGLDefaultMenu for sample code.
public class MyMenu extends FXGLMenu {
public MyMenu(MenuType type) {
super(type);
// code to customize the view of your menu
getContentRoot().getChildren().addAll( ... );
}
}
The MenuType.MAIN_MENU
is the one shown at the start of the application (after Intro if present). When the main menu is shown, the game has not been initialized yet. The MenuType.GAME_MENU
is the one that can be opened during gameplay.
public class MySceneFactory extends SceneFactory {
@Override
public FXGLMenu newMainMenu() {
return new MyMenu(MenuType.MAIN_MENU);
}
@Override
public FXGLMenu newGameMenu() {
return new MyMenu(MenuType.GAME_MENU);
}
}
...
settings.setSceneFactory(new MySceneFactory());