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 中,如何在矩形顶部附加圆形?
基础教程推荐
- RabbitMQ:消息保持“未确认"; 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
