libgdx - ShapeRenderer in Group.draw renders in wrong colour(libgdx - Group.draw 中的 ShapeRenderer 以错误的颜色呈现)
问题描述
我的群组:
public class GShape extends Group{
private ShapeRenderer shape;
public GShape() {
super();
shape = new ShapeRenderer();
}
@Override
public void draw(SpriteBatch batch, float parentAlpha) {
super.draw(batch, parentAlpha);
shape.begin(ShapeType.Line);
Gdx.gl10.glLineWidth(5);
shape.setColor(1, 1f, 1f, 1f);
shape.line(0, 0, 200, 100);
shape.end();
}
}
主要:
public class GameControl implements ApplicationListener {
private Stage stage;
private GShape gShape;
@Override
public void create() {
stage = new Stage(480,320,false);
Texture t = new Texture(Gdx.files.internal("data/the200.png"));
Image i = new Image(t);
stage.addActor(i);
gShape = new GShape();
stage.addActor(gShape);
}
@Override
public void dispose() {
}
@Override
public void render() {
Gdx.gl.glClearColor(0, 0, 0, 1);
Gdx.gl.glClear(GL10.GL_COLOR_BUFFER_BIT);
stage.draw();
// gShape.render();
}
@Override
public void resize(int width, int height) {
}
@Override
public void pause() {
}
@Override
public void resume() {
}
}
形状的颜色不是白色?为什么?
Colour of shape is not white? Why?
http://nw7.upanh.com/b3.s38.d3/352dd792eb77ce6df204a7af47ae1ac6_55348087.cos.jpg?rand=0.19125773780979216
推荐答案
您可能会得到不一致的结果,因为您混合了 SpriteBatch
和 ShapeRenderer
上下文.这两个都希望在 begin()
和 end()
调用之间维护它们存储"在 OpenGL 中的状态.
You are probably getting inconsistent results because you're mixing SpriteBatch
and ShapeRenderer
contexts. Both of these expect state they "store" in OpenGL to be maintained between begin()
and end()
calls.
Actor
draw()
方法在 SpriteBatch
begin()
已经存在的上下文中调用已被调用,因此您需要在开始 ShapeRenderer
之前结束它.(并且您需要在返回之前重新启动SpriteBatch
.
The Actor
draw()
method is called in a context where the SpriteBatch
begin()
has already been called, so you need to end it before beginning your ShapeRenderer
. (And you need to restart the SpriteBatch
before returning.
像这样:
@Override
public void draw(SpriteBatch batch, float parentAlpha) {
super.draw(batch, parentAlpha);
batch.end(); // ** End the batch context
shape.begin(ShapeType.Line);
// .. draw lines ...
shape.end()
batch.begin(); // ** Restart SpriteBatch context that caller assumes is active
}
这篇关于libgdx - Group.draw 中的 ShapeRenderer 以错误的颜色呈现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:libgdx - Group.draw 中的 ShapeRenderer 以错误的颜色呈现


- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 获取数字的最后一位 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 转换 ldap 日期 2022-01-01