public void Awake()
        {
            Log.dbg("Awake");

            instance = this;

            excludeVessels     = new List <string>();
            excludeParts       = new List <string>();
            excludePartModules = new List <string>();
            configure();

            KASAPI.initialize();
        }
Ejemplo n.º 2
0
 protected override void reattach()
 {
     if (moduleHangar != null)
     {
         if (!collisionDetected)
         {
             WorldStabilizer.invokeAction(moduleHangar, "Attach anchor");
             collisionDetected = true;
         }
     }
     else
     {
         Log.detail("Hangar module is null");
     }
 }