0

我正在使用 C# for Windows Phone 8 在 XNA 4.0 中编写游戏。

如何更改 Resolution 或 VirtualResolution(我不知道如何调用它)?我在网上寻找,但找不到正确的答案。

我发现(1):

Resolution.SetVirtualResolution(1280, 720);
Resolution.SetResolution(800, 600, false);

(2)

graphics.PreferredBackBufferHeight = 768;
graphics.PreferredBackBufferWidth  = 1024;
graphics.IsFullScreen = true;
graphics.ApplyChanges();

(1)我不知道如何使用它,(2)不起作用。我在 WP8 Emulator 中的分辨率为 800x480,但无法更改。

4

0 回答 0