标签: java image lwjgl slick2d
如何为变量分配png然后在特定的x和y上绘制?请不要使用OpenGL绑定等。
答案 0 :(得分:1)
您可以使用
org.newdawn.slick.Image
Image img = new Image("/path/to/img");
然后使用
render
img.draw(x, y);
Image.Image(String ref)
Image.draw(float x, float y)