Beispiel #1
0
        public ExperimentalScenario()
        {
            Constants  = new WarmingConstants();
            Star       = new ExperimentalStar();
            FrameCount = 30000;

            ScenarioEvents = new ScenarioEvent[]
            {
                new ScenarioEvent(1500, world =>
                {
                    world.Temperature += 0.60;
                })
            };
        }
 public SunWarmingScenario()
 {
     Constants  = new WarmingConstants();
     Star       = new Sun();
     FrameCount = 50000;
 }