예제 #1
0
 public void Draw(SpriteBatch spriteBatch)
 {
     _currentScene.Draw(spriteBatch, ViewportAdapter);
     spriteBatch.Begin();
     spriteBatch.Draw(_transitionImage.TextureRegion.Texture, new Rectangle(0, 0, GraphicsDevice.Viewport.Width, GraphicsDevice.Viewport.Height), Color.White * _transitionImage.Alpha);
     _currentScene.DrawDebugValues(spriteBatch);
     spriteBatch.End();
 }