how do I drag an object in libgdx using box2d?(如何使用 box2d 在 libgdx 中拖动对象?)
问题描述
我已将对象添加到 libgdx
中的 box2d
世界.
我想知道是否可以用鼠标拖动对象?如果是这样,怎么做?
I have added objects to a box2d
world in libgdx
.
I am wondering if it was possible to drag objects with the mouse? If so, how?
谢谢!
推荐答案
这里有几个选项.您可以使用鼠标关节,也可以使用运动体并手动设置其位置.如何使用鼠标关节的一个很好的例子看看这个:
There are a couple of options here. You can use a mouse joint or you can use a kinematic body and set it's position manually. A good example of how to use a mouse joint check this out:
http://code.google.com/p/libgdx-backend-android-livewallpaper/source/browse/gdx-backend-android-livewallpaper-示例/src/com/badlogic/gdx/tests/box2d/Box2DTest.java?r=ba02aaf34a8ca07daa0c30493bab993067c652f9
如果您想使用运动体,您可以这样做:
If you want to use a kinematic body you would do this:
在渲染()中:
body.setTransform(Gdx.input.getX(), Gdx.input.getY(), 角度);
body.setTransform(Gdx.input.getX(), Gdx.input.getY(), angle);
然后你会说 body.getPosition() 来渲染你的精灵.或者,如果您正在使用调试渲染器来绘制您的身体,但只是绘制形状.
And then you would say body.getPosition() for the rendering of your sprites. Or if you are using the debug renderer that will draw your bodies, but just as shapes.
这篇关于如何使用 box2d 在 libgdx 中拖动对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 box2d 在 libgdx 中拖动对象?
基础教程推荐
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01