# HG changeset patch # User Alys Brooks # Date 2022-01-27 04:52:30 # Node ID e0752cc80fbc2f352b8633a259ab925f8cba545e # Parent d1e3ff2cd3a0b06fe267751a1c701c7e65ad0972 Revert changes to depth. diff --git a/isometric-park-fna/Renderers/AreaRenderer.cs b/isometric-park-fna/Renderers/AreaRenderer.cs --- a/isometric-park-fna/Renderers/AreaRenderer.cs +++ b/isometric-park-fna/Renderers/AreaRenderer.cs @@ -38,7 +38,7 @@ ) { Tile.DrawOutlinedSquares(batch, areaComponent.squares, Color.Teal); - Quad.FillSquares(batch, areaComponent.squares, Color.Teal, 0.5f, 0.99f); + Quad.FillSquares(batch, areaComponent.squares, Color.Teal, 0.5f, 0.79f); } var selected = GetComponent(entity).selected; @@ -49,7 +49,7 @@ ) { Tile.DrawOutlinedSquares(batch, areaComponent.squares, Color.Teal); - Quad.FillSquares(batch, areaComponent.squares, Color.Gray, 0.5f, 0.98f); + Quad.FillSquares(batch, areaComponent.squares, Color.Gray, 0.5f, 0.80f); } } }