差分

ナビゲーションに移動 検索に移動
編集の要約なし
そのような場合は初期化の際にGraphicsDevice.DisplayModeプロパティの値で明示的に解像度を設定すると改善する。
<source lang="csharp">
protected override void Initialize() { this.graphics.IsFullScreen = false; this.graphics.PreferredBackBufferWidth = GraphicsDevice.DisplayMode.Width; this.graphics.PreferredBackBufferHeight = GraphicsDevice.DisplayMode.Height; this.graphics.ApplyChanges();
base.Initialize(); }
</source>

案内メニュー