Jump to content

DocMop

Members
  • Posts

    135
  • Joined

  • Last visited

Reputation

59 Excellent

Profile Information

  • About me
    Rocketry Enthusiast

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Make sure you install all the dependencies listed in the first post. They are not mentioned on the spacedock site unfortunately.
  2. This is offtopic but .. where the heck do you get all the time (and strength) to do that?!
  3. That mod you mentioned should be this one: If that one will not be updated ... I would say that I would like it very much if you (or someone else) takes over the screeching and rumbling stuff. It adds so much feel to the not-so-good landings and stuff.
  4. Got some random crash. Accepted satelite contract > Went to tracking station > Went to VAB > crash Log stuff: https://github.com/docmop/KSP_Logs/tree/master/Crash_2018-03-21_210628 Another one (on entering Tracking Station): https://github.com/docmop/KSP_Logs/tree/master/Crash_2018-03-22_210444
  5. @blackheart612 I have build one simple car and set the spring strength of all wheels to 0.2 for testing purposes. http://steamcommunity.com/sharedfiles/filedetails/?id=1337074481 The car is currently drifting sideways (in direction of the camera on the screenshot) with no friction at all. I removed KerbalFoundries for this test but that didn't make a difference. After some more testing: The grip is missing only in the direction perpendicular to the driving direction. This means I can accelerate and brake but have no sideways grip. This does not happen when the spring strength is higher. However I have no spring articulation whatsoever. I'll do some mod conflict tests. Edit: No spring articulation problem persists even with stock game. No sideways grip under low spring power persists with stock game
  6. Works in 1.4.1 Maybe a recompile should be done just to be on the safe side.
  7. Is it just me or is there something off with the suspension? It looks like it's largely dysfunctional. And If I set it to a really low value to test if the suspension moves at all, the vehicle behaves like there is no grip at all.
  8. I have kind of a bug report but with some caveats. KSP Version: 1.4.1 (yeah I know) KSPWheels (Kerbal Foundries) installed The Wheels rotate on the wrong axis while steering. You can steer the vehicle though (to some degree). Screenshot: http://steamcommunity.com/sharedfiles/filedetails/?id=1332862791
  9. Wait. You can not use the Missionbuilder missions inside career?!
  10. @ryan234abc Try setting the "Gunrange" lower. As far as I remember, only targets which are further away than Gunrange will be attacked with missiles.
  11. In that case the landing point and trajectory are based on the current velocity and gravity only. Which means, as far as I know, it can not show the correct landing spot when the craft is influenced by aerodynamic drag / lift on its future flight path. Interesting non the less.
  12. It will work. But entities will not load before 2km. Even with WW2 style planes, that's not much.
  13. For ease of use and extendibility I would suggest a part config value like "waterPropulsionLevel". That would be a float value which works like this: 0.0 = No water propulsion >0.0 to 1.0 = maximum percentage of part immersion depth for water propulsion to work I guess that would catch all possible use cases. Then, for propulsion effectiveness you can do the following: //immersion = percentage of part immersion in water //toDeepFactor = ineffectiveness factor of too deep immersion float getWaterPropulsionFactor(float immersion, float toDeepFactor) { float propulsionFactor = 0.0; if(immersion <= 0.0) //above water return 0.0; if(waterPropulsionLevel <= 0.0) //no water propulsion return 0.0; if(immersion > waterPropulsionLevel) //to deep -> reduced propulsion propulsionFactor = waterPropulsionLevel / (toDeepFactor * immersion); else //not deep enough -> reduced propulsion propulsionFactor = immersion / waterPropulsionLevel; return propulsionFactor; } Disclaimer: Just a fast prototype, no actual KSP coding experience. Warning: toDeepFactor can not be 0.0 because of DBZ!
  14. @Shadowmage It should be considered that the screwdrives have no technical need to be partly over water for propulsion. Unfortunately no time for testing interesting stuff right now
  15. The thing in question is: Should overspeed damage occur when the wheels are not under load? The wheels could as well hang in mid air. Note: Haven't tested wheels in water / in air yet.
×
×
  • Create New...