0

我试图在我的程序中显示一个简单的图像,但该函数没有显示任何内容!带有一些评论的准则不言自明:

public void draw(SpriteBatch batch, float parentAlpha){
    batch.draw(plane, this.getX(), this.getY(), this.getWidth()/2, this.getHeight()/2, this.getWidth(), this.getHeight(), 0, 0,
            this.getRotation(), 0 , 0, plane.getWidth(), plane.getHeight(), false, false); //shows nothing
    //batch.draw(texture, x, y, originX, originY, width, height, scaleX, scaleY, rotation, srcX, srcY, srcWidth, srcHeight, flipX, flipY)
    batch.draw(plane, this.getX(), this.getY()); //shows the image at x, y (0, 0)
    //batch.draw(texture, x, y)
}

我希望你能理解我的问题。谢谢你的帮助

4

1 回答 1

3

我很确定问题是您正在传递and 0。要以正常大小绘制图像,请改为传递。scaleXscaleY1

没有更多信息,这是唯一让我跳出来的东西。

于 2013-05-28T18:40:55.730 回答