如何改变javascricpt游戏中物体的速度?

发布于 2024-11-14 11:34:16 字数 322 浏览 2 评论 0原文

我正在开发一个 html5 游戏,该游戏在名为 propulsionjs 的 javascript 库上运行。其中将有 3 个不同速度的不同对象,分数​​添加在 游戏(时间限制为 30 秒)。我试图在 15 秒后更改移动物体(此处为气球)的速度。工作这里给出了游戏的.js文件http://pastie.org/2043894任何人都可以帮我吗..

I 'm working on an html5 game which works on javascript library called propulsionjs.In which there will 3 different objects with variable speeds, the score is added at the end of the game(time limit of 30 seconds).I'm trying to change the speed of the moving object(balloon here) after 15 seconds.The working js file for the game is given here http://pastie.org/2043894 Can anyone help me out..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绮筵 2024-11-21 11:34:16

你可以做类似的事情

setTimeout(function() {
    obj.balloon.red.vspeed = 40;
}, 15000);

You could do something like

setTimeout(function() {
    obj.balloon.red.vspeed = 40;
}, 15000);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文