Jump to content

BigFluffyTRex

Members
  • Posts

    2
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

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

  1. Hmm this didn't post the first time I think The bug for 1.0.5 is in StockAeroUtil.cs, line 255 The function ModuleLiftingSurfare.SetupCoefficients() has been changed so it no longer takes the air density (rho) as a parameter. If you remove rho from the call to SetupCoefficents at that line, it builds and runs correctly! (At least it display a trajectory in game ) Hope this helps! Rob
  2. Hi Youen - had a quick look at your mod with visual studio - it's not working in 1.0.5 because ModuleLiftingSurface.SetupCoefficients() no longer takes the air density as a parameter. If you change line 255 in Trajectories.StockAeroUtil FROM: wing.SetupCoefficients(v_wrld_vel, rho, out nVel, out liftVector, out liftdot, out absdot); TO : wing.SetupCoefficients(v_wrld_vel, out nVel, out liftVector, out liftdot, out absdot); It'll work. I tried building the mod and running it, and it worked for me! Hope that helps you
×
×
  • Create New...