From f04499cdc641950379bb44ccb4e18bdc304f0620 Mon Sep 17 00:00:00 2001 From: andy Date: Fri, 22 Dec 2006 18:02:17 +0000 Subject: [PATCH] Disable the defaulting of gear friction so the tunables actually work --- src/FDM/YASim/Airplane.cpp | 4 ---- 1 file changed, 4 deletions(-) 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); } }