0

这个约定不应该反过来吗?

桌面应用配置

cfg.width = 454;
cfg.height = 756;

//Logcat 还显示了预期的内容

Gdx.app.log("height",Integer.toString(Gdx.graphics.getHeight()));.//756
Gdx.app.log("width",Integer.toString(Gdx.graphics.getWidth()));//454

但然后这个:

shapeRenderer.line(40, 400, 700, 400);

产生这一行:

在此处输入图像描述

4

1 回答 1

0

默认情况下没有。LIBGDX 在左下角使用 OpenGL 的默认原点,Y 向上,X 向右。

你的相机可能坏了。

看起来你在 Mac 上运行它。您使用的是 RoboVM 还是 Mono?RoboVM 支持是非常新的。它可能有一些错误。

于 2013-07-31T21:00:08.350 回答