物理原理如何适用于 Breakout 和 Pong 等球类和桨类游戏?

发布于 2024-12-01 20:56:18 字数 147 浏览 0 评论 0原文

我有以下游戏:

在此处输入图像描述

我已经准备好与球和瓷砖的矩形碰撞。但我的问题是,当球击中瓷砖和球棒时,球应该以什么角度弹跳?我如何确定这一点?

I have the following game:

enter image description here

I have the rectangle collisions ready with the ball and with the tiles. but my problem is when the ball hits the tiles and the bat, what angle should the ball bounce at? How do I determine that?

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

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

发布评论

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

评论(3

梦罢 2024-12-08 20:56:18

您应该阅读物理学知识,特别是反射。有很多关于突破式物理的教程。

You should read up on physics, specifically Reflection. There are lots of tutorials on Breakout style physics.

若言繁花未落 2024-12-08 20:56:18

这并不困难,如果球撞到垂直障碍物,只需反转其 x 速度,如果撞到水平障碍物,则反转其 y 速度。

It's not that difficult, if the ball hits a vertical obstacle simply invert its x velocity, if it hits a horizontal obstacle invert its y velocity.

柏拉图鍀咏恒 2024-12-08 20:56:18

实际上 XNA Vector2 类中有一个内置方法专门用于此目的。查看 Vector2.Reflect 方法

There is actually a built in method in the XNA Vector2 class just for this. Check out the Vector2.Reflect method.

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