From: andy Date: Fri, 22 Dec 2006 18:02:17 +0000 (+0000) Subject: Disable the defaulting of gear friction so the tunables actually work X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f04499cdc641950379bb44ccb4e18bdc304f0620;p=flightgear.git Disable the defaulting of gear friction so the tunables actually work --- diff --git a/src/FDM/YASim/Airplane.cpp b/src/FDM/YASim/Airplane.cpp index 067e092b5..bfa7bcdd0 100644 --- a/src/FDM/YASim/Airplane.cpp +++ b/src/FDM/YASim/Airplane.cpp @@ -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); } }