From 7935b6aaff1c0eccbc365f255466519057ba4978 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 17 Feb 2020 21:20:52 -0500 Subject: [PATCH] Scene: go back to drawing Player behind tiles. GitOrigin-RevId: afaff144f2af1f0ebcaf5b640cb621413110f380 --- Shared/Scene.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Shared/Scene.cs b/Shared/Scene.cs index 141550a..fe8aa40 100644 --- a/Shared/Scene.cs +++ b/Shared/Scene.cs @@ -73,12 +73,12 @@ namespace SemiColinGames { spriteBatch.Begin( SpriteSortMode.Deferred, null, SamplerState.LinearWrap, null, null, null, transform); - // Draw foreground tiles. - world.Draw(spriteBatch); - // Draw player. player.Draw(spriteBatch); + // Draw foreground tiles. + world.Draw(spriteBatch); + // Aaaaand we're done. spriteBatch.End();