作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作 Frogger 的 C++ SFML 版本,目前正在尝试实现 Frog 和其他物体(汽车、卡车、原木等)之间的碰撞检测。我为 Frog 和游戏对象有单独的类,并希望使用边界框来检测交叉点,如下所示。
// get the bounding box of the entity
sf::FloatRect boundingBox = entity.getGlobalBounds();
// check collision with another box (like the bounding box of another
entity)
sf::FloatRect otherBox = ...;
if (boundingBox.intersects(otherBox))
{
// collision!
}
我遇到的问题是,我不知道如何使用来自不同类的两个 Sprite 来完成这项工作,经过几天的搜索,我找不到如何做到这一点的解释。
最佳答案
假设有两个对象“a”和“b”,其中包含您要测试的 Sprite 。然后您可以在代码中调用以下代码来测试它们之间的冲突:
#include "MyEntityA.hpp"
#include "MyEntityB.hpp"
MyEntityA entity_a;
MyEntityB entity_b;
if(entity_a.getSprite().getGlobalBounds().intersects(entity_b.getSprite().getGlobalBounds()))
{
// A collision happened.
}
查看此处了解更多信息:https://www.sfml-dev.org/tutorials/2.1/graphics-transform.php#bounding-boxes
关于C++ SFML 不同类之间的碰撞检测,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49616112/
所以我有这个 UltraTicTacToe 游戏,我正在用 HTML/CSS/JS 编码。它由表中表中的表组成。当您单击 X 或 O 时,我想要突出显示您应该进入的下一个 TicTacToe 牌 ta
Some text Some more text 如何让每个 .example 的 .whatever 包含其 .test 的内容? 例如,如果代码是这样的: Som
我是一名优秀的程序员,十分优秀!