に変更したいのですGraphicsProfile
がReach
。別の答えで私に言われたように、解決策は使用することです:
graphics.PreparingDeviceSettings += (s, e) =>
{
e.GraphicsDeviceInformation.GraphicsProfile = GraphicsProfile.Reach;
};
しかし、私のにはプロパティe.GraphicsDeviceInformation
が含まれていません。GraphicsProfile
同じクラスの2つの実装がMonoGame.Microsoft.Xna.FrameworkとMonoGame.Microsoft.Xna.Framework.Graphicsにどのように存在するのかわかりません。
の1つ...Framework
はによって使用されるものPreparingDeviceSettingEventArgs
ですが、もう1つには必要なプロパティが含まれていますGraphicsProfile
。
(私はここで非常に愚かな何かを見逃しているように感じます...)