在弯曲的交叉点阻挡球? [Java]

发布于 2024-10-16 05:05:53 字数 117 浏览 2 评论 0原文

我想在我的太空飞船前面有一个弯曲的盾牌来阻挡传入的攻击。

关于如何使用图像并使其仅检测像素的位置或类似的东西有什么想法吗?即使我有两个对象,一个是图像,另一个是曲线之类的东西,这应该是可能的,对吧?谢谢!

I want to have a curved shield in front of my space ship to block incoming attacks.

Any ideas on how to use an image and make it only detect where the pixels are or something similar? Even if I have two objects, being the image and something else like a curved line, this should be possible right? Thanks!

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

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

发布评论

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

评论(2

罪歌 2024-10-23 05:05:53

在真正的 MVC(模型-视图-控制器)设计中,您将拥有一个仅描述您的宇宙飞船所在位置的模型,或许还有一个描述您的护盾的数学公式。然后视图组件基于此绘制图像。如果您检查碰撞,则无需处理像素。您可以计算射击的路径(例如自游戏引擎的最后一个周期以来射击移动的路径,该路径仅覆盖毫秒),然后使用简单的数学检查它是否与任何物体发生碰撞。

In a real MVC (Model-View-Controller) design you would have a model that just describes where your spaceship is and perhaps a math formula describing your shield. Then the view component draws images based on that. If you check for collision you don't need to work on pixels. You can calculate the path of a shot (like the path the shot has moved since the last cycle of your game engine which will only cover milliseconds) and then check whether it collided with anything using plain math.

无声静候 2024-10-23 05:05:53

有教程吗……?

这个弹性碰撞的动力学模型采用了 MVC 设计,本文介绍了二维弹性碰撞可能具有指导意义。

Any tutorials…?

This kinetic model of elastic collisions uses an MVC design, and this paper on 2-Dimensional Elastic Collisions may be instructive.

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