Exemplo n.º 1
0
 public Scene(string Name, List <GameObject> Objects)
 {
     this.SceneName     = Name;
     this.virtualCamera = new VirtualCamera();
     this.Objects       = Objects;
     this.spotLight     = new SpotLight();
 }
Exemplo n.º 2
0
 public Scene(string Name, VirtualCamera MainCamera)
 {
     this.SceneName     = Name;
     this.virtualCamera = MainCamera;
     this.Objects       = new List <GameObject>();
     this.spotLight     = new SpotLight();
 }
Exemplo n.º 3
0
 public Scene(string Name, VirtualCamera MainCamera, List <GameObject> Objects, SpotLight spotLights)
 {
     this.SceneName     = Name;
     this.virtualCamera = MainCamera;
     this.Objects       = Objects;
     this.spotLight     = spotLight;
 }
Exemplo n.º 4
0
 public Scene()
 {
     this.SceneName     = "Simple Scene";
     this.virtualCamera = new VirtualCamera();
     this.Objects       = new List <GameObject>();
     this.spotLight     = new SpotLight();
 }