libgdx - how to add background image in stage?(libgdx - 如何在舞台上添加背景图片?)
问题描述
我正在学习 libgdx,但我被困在一个点上..
I am learning libgdx but i am stuck at a point..
我在我的舞台上添加了一个按钮,现在我想在舞台上添加一个图像,以便图像看起来像按钮的背景图像.我的意思是说按钮应该位于图像上.我一直在寻找教程,但无法做到这一点.
I have added a button in my stage , now i want to add a image in the stage so that the image looks as the background image to the button.i mean to say that the button should lie on the image. I have been looking tutorials but not been able to do that.
怎么做?有什么帮助吗?
How can it be done? any help?
推荐答案
您唯一需要做的就是在绘制Button之前绘制背景.
有几种可能的方法来做到这一点:
- 您可以将背景作为 Image(Actor 的子类)添加到 Stage 并使用 z-index 确保它被绘制为背景.
- 您可以获取 Stage 的 SpriteBatch (stage.getBatch()) 并使用其中一种 draw 方法在调用 stage.draw()
The only thing you need to do is to draw the background, before drawing the Buttons.
There are a few possible ways to do that:
- You can add the background as an Image (subclass of Actor) to the Stage and use the z-index to make sure it is drawn as a background.
- You can get the Stages SpriteBatch (stage.getBatch()) and use one of its draw methods to draw the background, before calling stage.draw()
您也可以使用另一个 SpriteBatch,但我不推荐它,因为它是一个非常重"的对象,在这种情况下它不是必需的.
我猜,在调用 stage.draw() 之前,你需要调用 spritebatch.end(),因为你习惯于 的 背景.SpriteBatch绘制
You could also use another SpriteBatch, but i don't recommend it, as it is a pretty "heavy" object and it is just not neccessaty in this case.
I guess, before calling stage.draw() you need to call spritebatch.end(), for the SpriteBatch you used to draw the background.
这篇关于libgdx - 如何在舞台上添加背景图片?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:libgdx - 如何在舞台上添加背景图片?
- 未找到/usr/local/lib 中的库 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 转换 ldap 日期 2022-01-01
- 获取数字的最后一位 2022-01-01
