@Override public void handleStateChangeNotification(StateChangeNotification info) { // FIXME: hide stage only when IS_DESKTOP, when OTN-464 gets solved if (!Platform.isAndroid() && Type.BEFORE_START.equals(info.getType())) { // On iOS we shouldn't hide the stage, but for now we do it to solve OTN-454 // This will leave a black screen for a sort while until the new stage is shown stage.hide(); } }
@Override public void handleStateChangeNotification(final StateChangeNotification stateChangeNotification) { if (stateChangeNotification.getType() == Type.BEFORE_START) this.preloaderStage.hide(); }
@Override public void handleStateChangeNotification(StateChangeNotification stateChangeNotification) { if (stateChangeNotification.getType() == Type.BEFORE_START) { m_preloaderStage.hide(); } }
@Override public void handleStateChangeNotification(StateChangeNotification stateChangeNotification) { if (stateChangeNotification.getType() == Type.BEFORE_START) { palco.hide(); } }