Create Shaded area Unity2D

Hello,
I am trying to get a shaded area in my scene, but I have no Idea how to go about it.
My scene is made out of Quads with a Sprite/Diffuse Shader all located at z=0.
My main camera is orthographic and it is located at z= -20.
The light that I am currently using for illuminating all the scene is a directional light located at z=-30.
Here is a illustration of the shaded area that I would like to have ( sorry for the very poor quality ):
[23448-new+doc_1+(11).jpg|23448]

Any directions on how to go about this will be greatly appreciated.

Thanks.

I have 2 ideas.

  1. Use a floating plane (quad) which casts a shadow over the area ahead of the player and make it a child of the camera. This will give you good looking results, but will be much more CPU intensive than my second option due to the lighting calculations.
  2. Use a transparent floating plane (quad) which has a black texture on it and set the alpha of the texture to something that you find is reasonable looking and again, child it to the camera. Place it somewhere between the cam and the gameplay area. This won’t be as CPU intensive because there wouldn’t be any lighting calculations.