SpriteBatch.SetProjectionMatrix(cam.combined)
使 Spritebatch 不绘制块和我的角色,但相机移动工作,但如果我不使用这行代码,一切都被绘制但相机不工作?有谁知道解决方案,因为如果根本看不到它。
编辑:很抱歉第一篇文章很乱
这是一段麻烦的代码:
public void render()
{
cam.update();
spriteBatch.setProjectionMatrix(cam.combined);
spriteBatch.begin();
drawBlocks();
drawBob();
spriteBatch.end();
cam.position.x = world.bob.GetPosition().x;
cam.update();
drawCollisionBlocks();
if(debug)
drawDebug();
}