本文介绍了libgdx中的背景透明性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果在Android中使用libgdx,如何使屏幕背景透明?
How can I make background of screen transparent if I use libgdx in Android?
我尝试使用的代码不起作用.
The code I tried to use doesn't work.
Gdx.gl.glClearColor( 0, 0, 0, 0 );
Gdx.gl.glClear( GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT );
推荐答案
刚刚找到了解决方案!
只需将此代码添加到扩展AndroidApplication的类中即可.
Just add this code to the class that extends AndroidApplication.
AndroidApplicationConfiguration cfg = new AndroidApplicationConfiguration();
cfg.r = cfg.g = cfg.b = cfg.a = 8;
cfg.useGL20 = false;
View view = initializeForView(new LineDrawing(), cfg);
if (graphics.getView() instanceof SurfaceView) {
SurfaceView glView = (SurfaceView) graphics.getView();
glView.getHolder().setFormat(PixelFormat.TRANSLUCENT);
glView.setZOrderOnTop(true);
}
这篇关于libgdx中的背景透明性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!