(官网:www.libgdx.cn)
在Libgdx中的清屏操作不同于普通的OpenGL应用。唯一的不同是访问OpenGL context。
代码如下:
@Override
public void render() {
Gdx.graphics.getGL20().glClearColor( 1, 0, 0, 1 );
Gdx.graphics.getGL20().glClear( GL20.GL_COLOR_BUFFER_BIT | GL20.GL_DEPTH_BUFFER_BIT );
}
(www.libgdx.cn版权所有,如需转载,注明出处)
时间: 2024-09-21 03:03:05