gpt4 book ai didi

java - 如何反复用纹理填充 libgdx 主体?

转载 作者:行者123 更新时间:2023-11-29 04:28:23 31 4
gpt4 key购买 nike

我知道我可以通过使用 PolygonRegion 来做到这一点,但问题是我使用 scene2d.Stage 和几个 Actor 。您可能知道阶段使用 SpriteBatch 而我无法渲染 PolygonRegion(方法 batch.draw(polygonRegion) 不存在)。

我想要的结果:

enter image description here

当我将此代码放入 Actor 的绘制方法中时:

polygonSpriteBatch.begin();
polygonSpriteBatch.draw(polygonRegion, getX(), getY(), getWidth(), getHeight());
polygonSpriteBatch.end();

我得到这样的东西:

enter image description here

最佳答案

根据我的说法,你应该在 PolygonSpriteBatch draw(..) 调用的顶部使用 Stage 我的意思是使用 PolygonSpriteBatch 用于 2D 地形。

如果您需要的 Actor/Image 是矩形大小,那么您可以包装您的纹理:

Texture texture=new Texture("tex1.png");
texture.setWrap(Texture.TextureWrap.Repeat, Texture.TextureWrap.Repeat);
textureRegion=new TextureRegion(texture,300,300);

创建PolygonSpriteBatch对象并传入Stage的构造函数。

stage=new Stage(new ScalingViewport(Scaling.stretch, Gdx.graphics.getWidth(), Gdx.graphics.getHeight(), new OrthographicCamera()),new PolygonSpriteBatch());

为了更具凝聚力,您可以通过继承创建自己的 Stage。

然后创建 Actor 类来处理/绘制特定纹理图像的 PolygonRegion

public class PolyActor extends Actor {

PolygonRegion polygonRegion;

public PolyActor(PolygonRegion region){
this.polygonRegion=region;
}

@Override
public void draw(Batch batch, float parentAlpha) {

Color color = getColor();
batch.setColor(color.r, color.g, color.b, color.a * parentAlpha);
((PolygonSpriteBatch)batch).draw(polygonRegion,getX(),getY());
}
}

创建 PolyActor 并添加到 Stage,下面是我的测试代码和输出:

float a = 100;
float b = 100;

PolygonRegion polygonRegion=new PolygonRegion(textureRegion,new float[] {
a*0, b*0,
a*0, b*2,
a*1, b*2,
a*1.5f, b*1.5f,
a*3, b*1.5f,
a*3.5f, b*1,
a*4, b*1,
a*4.5f, b*1.5f,
a*5f, b*1.5f,
a*5f, b*0f},new short[] {
0, 1, 2,1,2,3,0,2,3,0,3,4,0,4,5,0,5,6,0,6,9,6,7,9,7,8,9
});

PolyActor polyActor =new PolyActor(polygonRegion);
polyActor.setPosition(75,0);
stage.addActor(polyActor);

我使用的纹理:

enter image description here

我的预期输出:

enter image description here

编辑

Texture 只不过是 GPU 内存中的二维字节数组。这个二维数组有大小,这些字节通常被解释为颜色。字节数据的缩放不会产生影响,但您几乎可以随心所欲地使用这些数据。

您可以通过Pixmap 创建自己的缩放纹理:

Pixmap originalPix = new Pixmap(Gdx.files.internal("badlogic.jpg"));  // 256 * 256
Pixmap scaledPix = new Pixmap(700, 700, originalPix.getFormat());
scaledPix.drawPixmap(originalPix, 0, 0, originalPix.getWidth(), originalPix.getHeight(), 0, 0, scaledPix.getWidth(), scaledPix.getHeight());
Texture texture = new Texture(scaledPix); // 400 * 400
originalPix.dispose();
scaledPix.dispose();

关于java - 如何反复用纹理填充 libgdx 主体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45073603/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com