//Remove a Directional Light
 public void RemoveLight(DirectionalLight Light)
 {
     directionalLights.Remove(Light);
 }
 //Add a Directional Light
 public void AddLight(DirectionalLight Light)
 {
     directionalLights.Add(Light);
 }