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); } } }