In libgdx how do you attach a circleshape on top of a rectangle?(在 libgdx 中,如何在矩形顶部附加圆形?)
问题描述
我创建了一个主体,并创建了两个单独的夹具,一个夹具创建一个矩形,另一个夹具创建一个圆形.但是当我使用 .createfixture 时,它会将圆圈放在矩形的中心,我希望圆圈像火柴一样位于矩形的顶部.
I have created a body and I have created two separate fixtures, one fixture creates a rectangle shape and the other fixture creates a circle shape. But when I use the .createfixture it puts the circle in the centre of the rectangle, I want the circle on top of the rectangle like a matchstick.
这是我的代码不知道该怎么做...
here is my code don't know what to do ...
rectangleBodyDef = new BodyDef();
rectangleBodyDef.type = BodyType.DynamicBody;
rectangleBodyDef.position.set(10,20);
rectangleBody = world.createBody(rectangleBodyDef);
rectangleBodyShape = new PolygonShape();
rectangleBodyShape.setAsBox(2f, 0.75f);
rectangleBodyFixtureDef = new FixtureDef();
rectangleBodyFixtureDef.shape = rectangleBodyShape;
rectangleBodyFixtureDef.restitution = 0.8f;
rectangleBody.createFixture(rectangleBodyFixtureDef);
/**********************CREATING THE SECOND BODY (CIRCLE BODY) ************/
circleShape = new CircleShape();
circleShape.setRadius(0.75f);
circleFixtureDef = new FixtureDef();
circleFixtureDef.shape = circleShape;
circleFixtureDef.restitution = 0.8f;
rectangleBody.createFixture(circleFixtureDef);
推荐答案
Fixture Definitions 是相对于身体位置的,设置 CircleShape 位置在矩形上方一点:
Fixture Definitions are relative to the body position, set the CircleShape position to be a little above the rectangle one:
CircleShape circleShape = new CircleShape();
circleShape.setRadius(0.75f);
circleShape.setPosition(new Vector2(0,2)); //<------Add this
FixtureDef circleFixtureDef = new FixtureDef();
circleFixtureDef.shape = circleShape;
circleFixtureDef.restitution = 0.8f;
rectangleBody.createFixture(circleFixtureDef);
这篇关于在 libgdx 中,如何在矩形顶部附加圆形?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 libgdx 中,如何在矩形顶部附加圆形?
基础教程推荐
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01