public void Remove(ProjectionLight o)
 {
     m_Lights.Remove(o);
 }
 public void Add(ProjectionLight o)
 {
     Remove(o);
     m_Lights.Add(o);
 }