我无法在 Android 上使用 box2D 初始化新世界
我在“库”选项卡中添加了 gdx.jar 和 gdx-backend-android.jar。我得到 java.lang.UnsatisfiedLinkError: newWorld
for
gravity = new Vector2(0,10f);
world = new World(gravity, false);
All the issues in google source code tracker can't help me。
I added the gdx.jar and gdx-backend-android.jar in the Libraries tab. I get java.lang.UnsatisfiedLinkError: newWorld
for
gravity = new Vector2(0,10f);
world = new World(gravity, false);
All the issues in google source code tracker cannot help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设你只使用 box2d 包装器。在这种情况下,您必须自己通过 System.load("gdx") 加载本机。
You only use the box2d wrapper i assume. In that case you have to load the natives yourself via System.load("gdx").
您是否将这些库添加到应用程序的构建路径中?
Did you add these libraries to your app's build path?