如何在窗口中获取固定位置?我使用2D相机,如果移动得分仍然在我身后。我尝试了这个,但它不起作用:
spriteBatch.DrawString(font, "Score: "+ score,//here i have to put the parameters of the position , Color.Gold);
答案 0 :(得分:0)
使用2D相机时,您需要使用另一个SpriteBatch
作为固定图形,否则您绘制的所有内容都会在屏幕上滑动。
spriteBatch.Begin();
spriteBatch.DrawString(font, "Score: "+ score, new Vector2(x, y), color);
spriteBatch.End();