Libgdx camera/scaling issue(Libgdx 相机/缩放问题)
问题描述
这只是一个非常快速的帖子,想知道我做错了什么?
This is just a really quick post wondering what i have done wrong?
我希望使用我拥有的任何屏幕尺寸在整个屏幕上填充背景,但这并不能使它起作用.这里是所有代码:
I want the background to be filled on the whole screen with whatever screen sizes i have but this does not make it work. Here is all the code:
// Variables
Jump game;
OrthographicCamera cam;
SpriteBatch sb;
// Variables
public SplashScreen(Jump game)
{
this.game = game;
cam = new OrthographicCamera(Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
cam.translate(cam.viewportWidth / 2, cam.viewportHeight / 2);
sb = new SpriteBatch();
}
public void show()
{
}
public void render(float delta)
{
Gdx.gl20.glClearColor(0.2F, 0.6F, 1F, 1F);
Gdx.gl20.glClear(GL20.GL_COLOR_BUFFER_BIT);
cam.update();
sb.begin();
sb.setProjectionMatrix(cam.combined);
sb.draw(Assets.splash_spr_background, 0, 0);
sb.end();
}
谢谢!:)
推荐答案
问题是您的资产与视口大小不同.请参阅下面的链接.Libgdx 使用 Viewport 类来处理这个问题.
The problem is your asset is not the same size as the viewport. See the links below. Libgdx uses the Viewport class to handle this.
如何处理libGDX中不同的纵横比?
如何根据不同缩放图片libgdx 中的屏幕分辨率
https://github.com/libgdx/libgdx/wiki/Viewports
这篇关于Libgdx 相机/缩放问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Libgdx 相机/缩放问题
基础教程推荐
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01