我想测试一下是否可以将游戏分辨率设置得很低,并获得所需的复古风格NES图形风格。当我设置分辨率时,一切都非常模糊。我关闭了“抗锯齿”功能,纹理没有过滤。
void Start() {
Screen.SetResolution(256, 240, true);
MR.transform.gameObject.active = false;
StartCoroutine(MakeRectangle());
}
void OnGUI()
{
GUI.Box(new Rect(Screen.width / 4, Screen.height / 4, Screen.width / 2, Screen.height / 2), "This is a box");
}