Ejemplo n.º 1
0
 public void AddLight(ALight light, Scene scene)
 {
     lights.Add(light);
     light.RegisterCoreInTheLight(scene);
     LightCache.setCache(light.Radius);
 }
Ejemplo n.º 2
0
 public void RemoveLight(ALight light)
 {
     lights.Remove(light);
 }
Ejemplo n.º 3
0
 public void AddLight(ALight light)
 {
     lightController.AddLight(light, this);
 }