Exemple #1
0
        public override void OnAwake()
        {
            Debug.Log("[ProgenyScenario] OnAwake");
            current = this;

            locations = new LocationTracker();

            embryos   = new Dictionary <string, Embryo> ();
            juveniles = new Dictionary <string, Juvenile> ();
            males     = new Dictionary <string, Male> ();
            females   = new Dictionary <string, Female> ();
        }
Exemple #2
0
 void onProgenyScenarioLoaded(ProgenyScenario progeny)
 {
     ProcessLoadingKerbals();
 }
Exemple #3
0
 void OnDestroy()
 {
     current = null;
 }