作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
基本上,我只是想在程序启动时每秒自动打开一个阶段。我打算继续沿着这条路线走下去,同时拥有使用不同阶段的多个时间线,这样我就可以在其中放置不同的图像。更实际的方法是什么?
mediaPlayer.play();
int seconds = 1;
Timeline timeline = new Timeline(
new KeyFrame(Duration.seconds(seconds), e -> {
BorderPane bpnew = new BorderPane();
Scene repscene = new Scene(bpnew, 400, 450);
Stage repstage = new Stage();
repstage.setScene(repscene);
repstage.show();
})
);
timeline.setCycleCount(Animation.INDEFINITE);
timeline.play();
BorderPane root = new BorderPane();
Scene scene = new Scene(root, 400, 450);
primaryStage.setScene(scene);
primaryStage.setTitle("Popup Test");
primaryStage.show();
}
最佳答案
像这样的代码怎么样?您可以创建一个 custom Dialog 。然后将其放入您的计时器中。您还可以使用 AnimationTimer 。与 TimeLine 类似,但每秒调用 60 次,没有其他限制。
Timeline timeline = new Timeline(
new KeyFrame(Duration.seconds(5), e -> {
Dialog< Void> dialog = new Dialog<>();
dialog.setTitle( "Image");
dialog.getDialogPane().getButtonTypes().add(ButtonType.OK);
ImageView view = new ImageView("https://upload.wikimedia.org/wikipedia/commons/1/11/Cheetah_Kruger.jpg");
ScrollPane root = new ScrollPane( view);
root.setPrefWidth( 800);
root.setPrefHeight( 600);
dialog.getDialogPane().setContent( root);
dialog.setResizable( true);
dialog.show();
})
);
timeline.setCycleCount(Animation.INDEFINITE);
timeline.play();
关于java - 如何打开无限数量的关卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54954553/
我有 10 个级别。就像普通游戏一样,只有通关之前的关卡才能进入下一关。每个级别唯一改变的部分是一个 Sprite 和 Sprite 的位置。 如果你通过下一关解锁的关卡,然后区分你所在的关卡并加载定
我读了这个optimisation problem在谷歌代码挑战赛中。 (现在比赛已经结束了,聊聊也无妨。) Armin is playing Osmos, a physics-based puzzl
对于我正在创建的游戏,我希望能够创建许多可以轻松加载的自定义关卡。每个级别都应该有一个 .sks 接口(interface)文件和它自己的 SKScene 子类 .swift 文件。 现在,这是有效的
如何在不给玩家造成延迟的情况下扩大我的世界/关卡的大小以包含更多游戏对象? 我正在为 Assets 商店创建 Assets 。它是一个随机程序世界生成器。只有一个主要问题:世界大小。 我不知道如何扩大
我是一名优秀的程序员,十分优秀!