最初に ImageView に追加する代わりに、ステージの背景として画像を配置する方法はありますか?
ImageView splash = new ImageView(getClass().getResource("/splash.png").toExternalForm());
VBox splashLayout = new VBox();
splashLayout.getChildren().addAll(splash, progressText, loadProgress);
Scene splashScene = new Scene(splashLayout);
initStage.setScene(splashScene);