我无法使用以下方法在LogCat中使用libGDX打印任何消息:
Gdx.app.log(tag, message);
在我的onCreate方法中,我设置了:
Gdx.app.setLogLevel(Application.LOG_INFO); //debug or error, same story
渲染方法:
public void render() {
if (loading && assets.update())
doneLoading();
Gdx.app.log("application", "loaded"); //not showed
camController.update();
Gdx.gl.glViewport(0, 0, Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
Gdx.gl.glClearColor(0, 0, 0.2f, 1);
Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT | GL20.GL_DEPTH_BUFFER_BIT);
modelBatch.begin(cam);
modelBatch.render(instances, environment);
modelBatch.end();
}
doneLoading()方法:
private void doneLoading() {
I_model = assets.get("data/male_teen.g3db", Model.class);
I_instance = new ModelInstance(I_model);
instances.add(I_instance);
loading = false;
}
建议?
答案 0 :(得分:0)
我删除了Eclipse自动创建的过滤器。清理项目并重新安装在设备上。现在它有效。