Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在这里,我正在尝试简单的篮球比赛,首先我创建了圆形球来测试 libgdx 中的 box2d 物理。
现在整合篮球形象除了圆形之外还有什么方法。
除了使用 BodyEditor 和 RUBE 之外,还有另一种方法可以做到这一点.. 只是用图像替换 circle 我觉得 bodyEditor 是真正冗长的方法..
谢谢
好吧,我想到的一种简单方法是
制作一个 Sprite 对象。
Sprite sprite; sprite.setposition(body.getx()-body.getwidth/2f ,body.gety()-body.getheight/2f); sprite.draw(spriteBatch);
并且不要忘记关闭调试渲染器
这只是一个伪代码而不是正确的语法代码。只是为了让你继续前进