diff options
Diffstat (limited to '')
-rwxr-xr-x | OpenSim/Region/Physics/BulletSPlugin/BSMotors.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSMotors.cs b/OpenSim/Region/Physics/BulletSPlugin/BSMotors.cs index b256887..e9f1549 100755 --- a/OpenSim/Region/Physics/BulletSPlugin/BSMotors.cs +++ b/OpenSim/Region/Physics/BulletSPlugin/BSMotors.cs | |||
@@ -143,12 +143,12 @@ public class BSVMotor : BSMotor | |||
143 | CurrentValue *= (Vector3.One - frictionFactor); | 143 | CurrentValue *= (Vector3.One - frictionFactor); |
144 | } | 144 | } |
145 | 145 | ||
146 | MDetailLog("{0},BSVMotor.Step,nonZero,{1},origCurr={2},origTarget={3},timeStep={4},timeScale={5},addAmnt={6},targetDecay={7},decayFact={8},fricTS={9},frictFact={10}", | 146 | MDetailLog("{0}, BSVMotor.Step,nonZero,{1},origCurr={2},origTarget={3},timeStep={4},timeScale={5},addAmnt={6},targetDecay={7},decayFact={8},fricTS={9},frictFact={10}", |
147 | BSScene.DetailLogZero, UseName, origCurrVal, origTarget, | 147 | BSScene.DetailLogZero, UseName, origCurrVal, origTarget, |
148 | timeStep, TimeScale, addAmount, | 148 | timeStep, TimeScale, addAmount, |
149 | TargetValueDecayTimeScale, decayFactor, | 149 | TargetValueDecayTimeScale, decayFactor, |
150 | FrictionTimescale, frictionFactor); | 150 | FrictionTimescale, frictionFactor); |
151 | MDetailLog("{0},BSVMotor.Step,nonZero,{1},curr={2},target={3},add={4},decay={5},frict={6},ret={7}", | 151 | MDetailLog("{0}, BSVMotor.Step,nonZero,{1},curr={2},target={3},add={4},decay={5},frict={6},ret={7}", |
152 | BSScene.DetailLogZero, UseName, CurrentValue, TargetValue, | 152 | BSScene.DetailLogZero, UseName, CurrentValue, TargetValue, |
153 | addAmount, decayFactor, frictionFactor, returnCurrent); | 153 | addAmount, decayFactor, frictionFactor, returnCurrent); |
154 | } | 154 | } |
@@ -158,7 +158,7 @@ public class BSVMotor : BSMotor | |||
158 | CurrentValue = Vector3.Zero; | 158 | CurrentValue = Vector3.Zero; |
159 | TargetValue = Vector3.Zero; | 159 | TargetValue = Vector3.Zero; |
160 | 160 | ||
161 | MDetailLog("{0},BSVMotor.Step,zero,{1},curr={2},target={3},ret={4}", | 161 | MDetailLog("{0}, BSVMotor.Step,zero,{1},curr={2},target={3},ret={4}", |
162 | BSScene.DetailLogZero, UseName, TargetValue, CurrentValue, returnCurrent); | 162 | BSScene.DetailLogZero, UseName, TargetValue, CurrentValue, returnCurrent); |
163 | 163 | ||
164 | } | 164 | } |