我正在使用C#为Windows Phone 8在XNA 4.0中编写游戏。
如何更改分辨率或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模拟器中有800x480分辨率,我无法改变它。