]> git.mxchange.org Git - flightgear.git/commitdiff
Disable the defaulting of gear friction so the tunables actually work
authorandy <andy>
Fri, 22 Dec 2006 18:02:17 +0000 (18:02 +0000)
committerandy <andy>
Fri, 22 Dec 2006 18:02:17 +0000 (18:02 +0000)
src/FDM/YASim/Airplane.cpp

index 067e092b5c0a328baaad2841170fd6985395cba1..bfa7bcdd00e9335f1b33716792b9f093121c4e6b 100644 (file)
@@ -738,10 +738,6 @@ void Airplane::solveGear()
         // Critically damped (too damped, too!)
         gr->gear->setDamping(2*Math::sqrt(k*_approachWeight*gr->wgt)
                              * gr->gear->getDamping());
-
-        // These are pretty generic
-        gr->gear->setStaticFriction(0.8f);
-        gr->gear->setDynamicFriction(0.7f);
     }
 }