在libgdx中沿x轴的高度和沿y轴的宽度是多少?

时间:2013-07-31 20:47:20

标签: java android libgdx

这个惯例不应该反过来吗?

桌面应用配置

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);

产生这一行:

enter image description here

1 个答案:

答案 0 :(得分:0)

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

你的相机可能搞砸了。

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