Jump to content

MacLuky

Members
  • Posts

    728
  • Joined

  • Last visited

Posts posted by MacLuky

  1. 4 hours ago, JoseEduardo said:

    on the topic of the station parts...

    http://imgur.com/a/pMuwJ

    that also leaves the possibility to have the KOSMOS VA adapter to the SSTU modules if I add this cap to them....

    the only thing here is that this is mostly for testing purposes, as the KOSMOS VA is originally 2.5m (even though I rescaled on my end to 1.875m) and there's no decoupler in it, so it is stuck with the TKS body :P

     

    How did you texture those? Mine were still plain white?

  2. Hi

    it may have been mentioned before, but I have a hard time getting kerbals to board after Eva. The door seems to be at the window and the ladder is slippery causing kerbals to slide off it.

    otherwise: awesome mod. Dragon competes with the Orion capsule just as in real live

  3. On 11 May 2016 at 2:23 AM, 5thHorseman said:

    I'd guess setting "disableAfterPlaying" to false would do it. If so, this modulemanager config should work:

    
    @PART[InflatableHeatShield]
    {
    	@MODULE[ModuleAnimateGeneric]
    	{
    		@disableAfterPlaying = false
    	}
    }

    Note this is totally untested and may not work for several reasons, but I can't imagine it'd hurt your game. I suggest if you try it to start a new sandbox save just to test the heat shield on the launchpad.

     
    1

    Hmm, I did not get that to work, did anyone else manage to deflate it? If so, can you post the entire patch file? Really like the idea.

  4. Ah no, not sure how that old stuff got there. Learned a bit about module manager since then. Thanks for the patch, but running into a bug now I believe. Ignore first part of message.

    Thanks for the lightning quick reply though

    looking at the code i'd say the container does not exist:

     

    Quote
    private void updatePersistentData()
      {
      if (containers != null)
      {
      persistentData = "";
      int len = containers.Length;
      for (int i = 0; i < len; i++)
      {
      if (i > 0) { persistentData = persistentData + ":"; }
      persistentData = persistentData + containers.getPersistentData();
      }   }   }

     

  5. On 15 May 2016 at 0:40 PM, RedParadize said:

     

    
    @PART[*]:HAS[@MODULE[SSTUVolumeContainer]]:NEEDS[USILifeSupport]
    {	
    	@MODULE[SSTUVolumeContainer]
    	{
    		@CONTAINER,0[*]
    		{
    			resource = Supplies
    			resource = Mulch
    		}
    	}
    }
    
    // You can fix the volume here:
    SSTU_RESOURCEVOLUME
    {
    	name = Supplies
    	volume = 1
    }
    
    SSTU_RESOURCEVOLUME
    {
    	name = Mulch
    	volume = 1
    }

    So to understand this:

     

     

    @Domfluff that thing is amazing!

    I've run into a little snitch after updating SSTU. My Orion 1B is 4 hours out of a manouvernode and I can't seem to save the ship anymore:

    Quote

    EXC 23:39:48.976] NullReferenceException: Object reference not set to an instance of an object
        SSTUTools.SSTUVolumeContainer.updatePersistentData ()
        SSTUTools.SSTUVolumeContainer.OnSave (.ConfigNode node)
        PartModule.Save (.ConfigNode node)
        ProtoPartModuleSnapshot..ctor (.PartModule module)
        ProtoPartSnapshot..ctor (.Part PartRef, .ProtoVessel protoVessel)
        ProtoVessel..ctor (.Vessel VesselRef)
        Vessel.BackupVessel ()
        FlightState..ctor ()
        Game.Updated ()
        FlightDriver+<PostInit>c__Iterator2D.MoveNext ()
    [LOG 23:39:50.041] Unpacking Orion 1B

     

    Not sure what went wrong there, but it's bad enough to make ksp not save. Since the crew is on a collision course with Eve, dumping the drive unit will probably not be a good idea.

  6. 11 hours ago, RedParadize said:

     

    
    @PART[*]:HAS[@MODULE[SSTUVolumeContainer]]:NEEDS[USILifeSupport]
    {	
    	@MODULE[SSTUVolumeContainer]
    	{
    		@CONTAINER,0[*]
    		{
    			resource = Supplies
    			resource = Mulch
    		}
    	}
    }
    
    // You can fix the volume here:
    SSTU_RESOURCEVOLUME
    {
    	name = Supplies
    	volume = 1
    }
    
    SSTU_RESOURCEVOLUME
    {
    	name = Mulch
    	volume = 1
    }

     

    So to understand this:

    - create a cfg file in GameData

    - @PART[*] match any part

    - that HAS[@MODULE:[SSTUVolumeContainer] 

    - provided that USI-LS in stalled: NEEDS[USILifeSupport]

    - Add to each section that has a @Module[SSTUVolumeContainer]

    - @Container, 0 [*] ? match any if 0 add???

    That would mean I can add the camera mod with to any SSTU capsule:

    @PART[SSTU-SC-*]
    {
        MODULE
        {
            name = DockingCameraModule
            allowedDistance = 1000
            nightVisionArgs = 0.5,0.7,0.5,0.5
            targetCrossColor = 0.9,0.0,0.0,1.0
            targetCrossColorOLDD = 0.0,0.0,0.9,1.0
            noise = true
        }
    }  

    Need to test! thanks for the info

     

  7. Hi

    I want to write a patch for SSTU tanks that allow me to add supplies (USI-LS) to them as a configurable resource. For me it makes sense that engineers would stick those inside a tank, rather than adding them to the outside. 

    However I have no clue:

    1.) (even after some googling) how the patch format works

    2.) what configuration parameters need to be changed in SSTU to add these

    Anybody that can help me out with an example?

    Regards

    Chris

  8. On 26 Sep 2014 at 2:36 AM, Nori said:

     

    On 26 Sep 2014 at 2:36 AM, Nori said:
    
    @PART[*]:HAS[@MODULE[ModuleCommand]]:Final
    MODULE
    { 
    	name = MechJebCore
    }
    

     

     

    Sorry for reviving an old topic but...

    This l

    On 29 Apr 2016 at 10:57 PM, blowfish said:

    I usually like to replace the whole KerbalJointReinforcement folder in GameData, since there might be config changes too, but yeah, that's the idea.

    ooks like something I need, but where do i put this? do I make separate cfg file under GameData so module manager (i presume) knows what to do? and what happens if MJ is not installed? can one make it a dependency?

  9. 1 hour ago, Shadowmage said:

    Indeed, same issue as reported here: https://github.com/shadowmage45/SSTULabs/issues/298

    As far as I know this is an issue in KJR that has been fixed in the most recent dev-versions but is not yet publicly available.  Will be doing some testing over the next few days to see if it is fixed with the new KJR.

    Sorry i didn't check your issue tracker. Can I just take the https://github.com/ferram4/Kerbal-Joint-Reinforcement master to test or is the dev branch in a separate repo?

  10. 20 hours ago, ComatoseJedi said:

    I didn't make a bug report, yet. I wanted to make sure this is repeatable before I waste your time by submitting stuff that you cannot reproduce. But, I do have a feeling it is an issue with KJR, due to the simple fact that when I first tested the last build that came out, I only had stock, sstu and KJR and that's when this happened. So, my guess is that KJR is playing havoc on your integrated docking ports. But, the funny thing is, it only happens when you launch two sstu pods up on one rocket and do a docking maneuver in orbit, like an Apollo CM/LM hard dock. I can launch two SSTU Ares I's up and dock them together with no problem. 

    But, I will -try- to do this without KJR and see if it makes a difference. While I'm at it, i will test to see if it's just the docking ports, or just the ones that are integrated onto your command pods. If I come up with different results, I will then post a bug report with all the information I have and logs to follow. 

    But a quick way to test? I did put an sstu apollo style test craft with sls parts (Orion and an LC3). Just launch and orbit it, then try and dock with it. It has nothing but stock launch clamps and sstu parts. 

    But, with the new patch release, We'll see if it works or not. 

    EDIT: KJR is the culprit, indeed. And the latest pre-release -appears- to work fine. I'll combine logs and open an issue on the tracker. But I don't know what good it'll do 

    I should have that one too, how can I tell?

  11. Also ran in the docking issue. Launched two soyuz couple of days apart and docked them caused the system to go haywire. Saw this in the log, could be a KJR issue:


     

    [LOG 21:10:35.579] Docking to vessel Mercury 4
    [LOG 21:10:35.582] [Progress Node Reached]: StationConstruction
    [LOG 21:10:35.584] [Progress Node Complete]: StationConstruction
    [LOG 21:10:35.587] [CurrencyConverter for Unpaid Research Program]: 0 Reputation taken, yields 0 Science
    [LOG 21:10:35.587] [CurrencyConverter for Unpaid Research Program]: 0 Reputation taken, yields 0 Science
    [LOG 21:10:35.587] [CurrencyConverter for Unpaid Research Program]: 1.5 Reputation taken, yields 0.6158295 Science
    [LOG 21:10:35.587] Added 5.9976 (6) reputation: 'Progression'.
    [LOG 21:10:35.587] [CurrencyConverter for Unpaid Research Program]: 1.5 Reputation taken, yields 0.6158295 Science
    [LOG 21:10:35.589] [Progress Node Reached]: Docking
    [LOG 21:10:35.589] [Progress Node Complete]: Docking
    [LOG 21:10:35.589] [CurrencyConverter for Unpaid Research Program]: 0 Reputation taken, yields 0 Science
    [LOG 21:10:35.589] [CurrencyConverter for Unpaid Research Program]: 0.25 Reputation taken, yields 0.1026382 Science
    [LOG 21:10:35.589] Added 0.9995893 (1) reputation: 'Progression'.
    [LOG 21:10:35.589] [CurrencyConverter for Unpaid Research Program]: 0.25 Reputation taken, yields 0.1026382 Science
    [WRN 21:10:35.593] [PartJoint]: None of the provided nodes was valid!
    [EXC 21:10:35.596] NullReferenceException
        KerbalJointReinforcement.KJRMultiJointManager.CheckMultiJointBetweenParts (.Part testPart1, .Part testPart2)
        KerbalJointReinforcement.KJRManager.UpdatePartJoint (.Part p)
        KerbalJointReinforcement.KJRManager.RunVesselJointUpdateFunction (.Vessel v)
        KerbalJointReinforcement.KJRManager.OnVesselWasModified (.Vessel v)
        EventData`1[Vessel].Fire (.Vessel data)
        Part.Couple (.Part tgtPart)
        ModuleDockingNode.DockToVessel (.ModuleDockingNode node)
        ModuleDockingNode.<SetupFSM>m__368 ()
        KerbalFSM.RunEvent (.KFSMEvent evt)
        KerbalFSM.updateFSM (KFSMUpdateMode mode)
        KerbalFSM.UpdateFSM ()
        ModuleDockingNode.Update ()
    [EXC 21:10:35.613] NullReferenceException: Object reference not set to an instance of an object
        KerbalAlarmClock.KerbalAlarmClock.UpdateDetails ()
        KerbalAlarmClock.KerbalAlarmClock.RepeatingWorker ()
        KSPPluginFramework.MonoBehaviourExtended.RepeatingWorkerWrapper ()
    [EXC 21:10:35.614] NullReferenceException: Object reference not set to an instance of an object
        KSP.UI.Screens.Flight.SASDisplay.LateUpdate ()
    [EXC 21:10:35.614] NullReferenceException: Object reference not set to an instance of an object
        VesselAutopilotUI.LateUpdate ()
    [EXC 21:10:35.614] NullReferenceException
        InternalSpace.InternalToWorld (Quaternion internalSpaceRotation)
        InternalSpace.WorldToInternal (Quaternion worldSpaceRotation)
        IVASun.LateUpdate ()
    [EXC 21:10:35.615] NullReferenceException
        SSTUTools.FairingContainer.setOpacity (Single value)
        SSTUTools.SSTUNodeFairing.updateOpacity ()
        SSTUTools.SSTUNodeFairing.updateFairingStatus ()
        SSTUTools.SSTUNodeFairing.LateUpdate ()
    [EXC 21:10:35.615] NullReferenceException
        OrbitPhysicsManager.LateUpdate ()
    [EXC 21:10:35.615] NullReferenceException
        FlightGlobals.get_upAxis ()
        FlightCamera.UpdateCameraTransform ()
        FlightCamera.LateUpdate ()
    [EXC 21:10:35.626] NullReferenceException
        VesselLabels.DrawGUI ()
        VesselLabels.OnGUI ()
    [EXC 21:10:35.640] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.641] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.656] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.656] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.659] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.660] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.664] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.665] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.667] NullReferenceException
        TimeWarp.Update ()
    [LOG 21:10:35.667] 4/29/2016 9:10:35 PM,KerbalAlarmClock,Active Vessel unreadable - resetting inqueue flag
    [EXC 21:10:35.675] NullReferenceException: Object reference not set to an instance of an object
        KSP.UI.Screens.Flight.SASDisplay.LateUpdate ()
    [EXC 21:10:35.675] NullReferenceException: Object reference not set to an instance of an object
        VesselAutopilotUI.LateUpdate ()
    [EXC 21:10:35.676] NullReferenceException
        InternalSpace.InternalToWorld (Quaternion internalSpaceRotation)
        InternalSpace.WorldToInternal (Quaternion worldSpaceRotation)
        IVASun.LateUpdate ()
    [EXC 21:10:35.676] NullReferenceException
        OrbitPhysicsManager.LateUpdate ()
    [EXC 21:10:35.677] NullReferenceException
        FlightGlobals.get_upAxis ()
        FlightCamera.UpdateCameraTransform ()
        FlightCamera.LateUpdate ()
    [LOG 21:10:35.683] 4/29/2016 9:10:35 PM,KerbalAlarmClock,Removing DrawGUI from PostRender Queue
    [EXC 21:10:35.685] NullReferenceException
        VesselLabels.DrawGUI ()
        VesselLabels.OnGUI ()
    [EXC 21:10:35.707] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.708] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.714] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.714] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.715] NullReferenceException: Object reference not set to an instance of an object
        KerbalAlarmClock.KerbalAlarmClock.UpdateDetails ()
        KerbalAlarmClock.KerbalAlarmClock.RepeatingWorker ()
        KSPPluginFramework.MonoBehaviourExtended.RepeatingWorkerWrapper ()
    [EXC 21:10:35.720] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.721] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.723] NullReferenceException
        TimeWarp.Update ()
    [LOG 21:10:35.723] 4/29/2016 9:10:35 PM,KerbalAlarmClock,Active Vessel unreadable - resetting inqueue flag
    [EXC 21:10:35.739] NullReferenceException: Object reference not set to an instance of an object
        KSP.UI.Screens.Flight.SASDisplay.LateUpdate ()
    [EXC 21:10:35.739] NullReferenceException: Object reference not set to an instance of an object
        VesselAutopilotUI.LateUpdate ()
    [EXC 21:10:35.739] NullReferenceException
        InternalSpace.InternalToWorld (Quaternion internalSpaceRotation)
        InternalSpace.WorldToInternal (Quaternion worldSpaceRotation)
        IVASun.LateUpdate ()
    [EXC 21:10:35.740] NullReferenceException
        OrbitPhysicsManager.LateUpdate ()
    [EXC 21:10:35.740] NullReferenceException
        FlightGlobals.get_upAxis ()
        FlightCamera.UpdateCameraTransform ()
        FlightCamera.LateUpdate ()
    [EXC 21:10:35.746] NullReferenceException
        VesselLabels.DrawGUI ()
        VesselLabels.OnGUI ()
    [EXC 21:10:35.755] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.756] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.761] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.761] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.765] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.765] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.767] NullReferenceException
        TimeWarp.Update ()
    [LOG 21:10:35.767] 4/29/2016 9:10:35 PM,KerbalAlarmClock,Active Vessel unreadable - resetting inqueue flag
    [EXC 21:10:35.776] NullReferenceException: Object reference not set to an instance of an object
        KSP.UI.Screens.Flight.SASDisplay.LateUpdate ()
    [EXC 21:10:35.776] NullReferenceException: Object reference not set to an instance of an object
        VesselAutopilotUI.LateUpdate ()
    [EXC 21:10:35.776] NullReferenceException
        InternalSpace.InternalToWorld (Quaternion internalSpaceRotation)
        InternalSpace.WorldToInternal (Quaternion worldSpaceRotation)
        IVASun.LateUpdate ()
    [EXC 21:10:35.777] NullReferenceException
        OrbitPhysicsManager.LateUpdate ()
    [EXC 21:10:35.777] NullReferenceException
        FlightGlobals.get_upAxis ()
        FlightCamera.UpdateCameraTransform ()
        FlightCamera.LateUpdate ()
    [EXC 21:10:35.833] NullReferenceException
        VesselLabels.DrawGUI ()
        VesselLabels.OnGUI ()
    [EXC 21:10:35.856] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.856] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.859] NullReferenceException: Object reference not set to an instance of an object
        KerbalAlarmClock.KerbalAlarmClock.UpdateDetails ()
        KerbalAlarmClock.KerbalAlarmClock.RepeatingWorker ()
        KSPPluginFramework.MonoBehaviourExtended.RepeatingWorkerWrapper ()
    [EXC 21:10:35.863] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.863] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.868] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.868] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.873] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.874] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.878] NullReferenceException
        TimeWarp.Update ()
    [LOG 21:10:35.879] 4/29/2016 9:10:35 PM,KerbalAlarmClock,Active Vessel unreadable - resetting inqueue flag
    [EXC 21:10:35.900] NullReferenceException: Object reference not set to an instance of an object
        KSP.UI.Screens.Flight.SASDisplay.LateUpdate ()
    [EXC 21:10:35.900] NullReferenceException: Object reference not set to an instance of an object
        VesselAutopilotUI.LateUpdate ()
    [EXC 21:10:35.900] NullReferenceException
        InternalSpace.InternalToWorld (Quaternion internalSpaceRotation)
        InternalSpace.WorldToInternal (Quaternion worldSpaceRotation)
        IVASun.LateUpdate ()
    [EXC 21:10:35.901] NullReferenceException
        OrbitPhysicsManager.LateUpdate ()
    [EXC 21:10:35.901] NullReferenceException
        FlightGlobals.get_upAxis ()
        FlightCamera.UpdateCameraTransform ()
        FlightCamera.LateUpdate ()
    [EXC 21:10:35.909] NullReferenceException
        VesselLabels.DrawGUI ()
        VesselLabels.OnGUI ()
    [EXC 21:10:35.922] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.923] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.926] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.927] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.928] NullReferenceException: Object reference not set to an instance of an object
        KerbalAlarmClock.KerbalAlarmClock.UpdateDetails ()
        KerbalAlarmClock.KerbalAlarmClock.RepeatingWorker ()
        KSPPluginFramework.MonoBehaviourExtended.RepeatingWorkerWrapper ()
    [EXC 21:10:35.930] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:35.930] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:35.932] NullReferenceException
        TimeWarp.Update ()
    [LOG 21:10:35.933] 4/29/2016 9:10:35 PM,KerbalAlarmClock,Active Vessel unreadable - resetting inqueue flag
    [EXC 21:10:35.937] NullReferenceException: Object reference not set to an instance of an object
        KSP.UI.Screens.Flight.SASDisplay.LateUpdate ()
    [EXC 21:10:35.937] NullReferenceException: Object reference not set to an instance of an object
        VesselAutopilotUI.LateUpdate ()
    [EXC 21:10:35.937] NullReferenceException
        InternalSpace.InternalToWorld (Quaternion internalSpaceRotation)
        InternalSpace.WorldToInternal (Quaternion worldSpaceRotation)
        IVASun.LateUpdate ()
    [EXC 21:10:35.937] NullReferenceException
        OrbitPhysicsManager.LateUpdate ()
    [EXC 21:10:35.938] NullReferenceException
        FlightGlobals.get_upAxis ()
        FlightCamera.UpdateCameraTransform ()
        FlightCamera.LateUpdate ()
    [EXC 21:10:36.016] NullReferenceException
        VesselLabels.DrawGUI ()
        VesselLabels.OnGUI ()
    [EXC 21:10:36.040] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:36.040] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:36.046] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:36.046] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:36.050] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:36.051] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:36.055] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:36.056] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:36.058] NullReferenceException: Object reference not set to an instance of an object
        KerbalAlarmClock.KerbalAlarmClock.UpdateDetails ()
        KerbalAlarmClock.KerbalAlarmClock.RepeatingWorker ()
        KSPPluginFramework.MonoBehaviourExtended.RepeatingWorkerWrapper ()
    [LOG 21:10:36.059] [4/29/2016 9:10:36 PM [x] Science!]: <Trace> (ExperimentFilter) - UpdateFilter Done - 00:00:00.0000350ms
    [EXC 21:10:36.059] NullReferenceException
        TimeWarp.Update ()
    [LOG 21:10:36.060] 4/29/2016 9:10:36 PM,KerbalAlarmClock,Active Vessel unreadable - resetting inqueue flag
    [EXC 21:10:36.101] NullReferenceException: Object reference not set to an instance of an object
        KSP.UI.Screens.Flight.SASDisplay.LateUpdate ()
    [EXC 21:10:36.101] NullReferenceException: Object reference not set to an instance of an object
        VesselAutopilotUI.LateUpdate ()
    [EXC 21:10:36.101] NullReferenceException
        InternalSpace.InternalToWorld (Quaternion internalSpaceRotation)
        InternalSpace.WorldToInternal (Quaternion worldSpaceRotation)
        IVASun.LateUpdate ()
    [EXC 21:10:36.102] NullReferenceException
        OrbitPhysicsManager.LateUpdate ()
    [EXC 21:10:36.102] NullReferenceException
        FlightGlobals.get_upAxis ()
        FlightCamera.UpdateCameraTransform ()
        FlightCamera.LateUpdate ()
    [EXC 21:10:36.109] NullReferenceException
        VesselLabels.DrawGUI ()
        VesselLabels.OnGUI ()
    [EXC 21:10:36.123] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:36.123] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:36.128] NullReferenceException
        OrbitPhysicsManager.checkReferenceFrame ()
        OrbitPhysicsManager.FixedUpdate ()
    [EXC 21:10:36.128] NullReferenceException
        FloatingOrigin.FixedUpdate ()
    [EXC 21:10:36.132] NullReferenceException
    
    

     

  12. Latest github release works a lot better. No problems anymore. I do see a few errors in the log:

    [ERR 18:04:10.260] Texture 'SSTU/Assets/LC-CRG-DIFF' not found!
    [ERR 18:04:10.260] Texture 'SSTU/Assets/LC-CRG-NRM' not found!
    [ERR 18:04:10.422] Texture 'SSTU/Assets/rcs_blocks_standard-DIFF' not found!
    [ERR 18:04:10.422] Texture 'SSTU/Assets/rcs_blocks_standard-NORM_NRM' not found!
    [ERR 18:04:10.455] Texture 'SSTU/Assets/LC-CRG-DIFF' not found!
    [ERR 18:04:10.456] Texture 'SSTU/Assets/LC-CRG-NRM' not found!
    [ERR 18:04:10.641] Texture 'SSTU/Assets/rcs_blocks_standard-DIFF' not found!
    [ERR 18:04:10.641] Texture 'SSTU/Assets/rcs_blocks_standard-NORM_NRM' not found!
    [ERR 18:04:10.727] Texture 'SSTU/Assets/LC-CRG-DIFF' not found!
    [ERR 18:04:10.727] Texture 'SSTU/Assets/LC-CRG-NRM' not found!
    [ERR 18:04:10.939] Texture 'SSTU/Assets/rcs_blocks_standard-DIFF' not found!

     

    But so far no effect on gameplay. Really awesome stuff!!! thanks for making this!

×
×
  • Create New...