diff options
author | Robert Adams | 2012-12-27 13:13:35 -0800 |
---|---|---|
committer | Robert Adams | 2012-12-27 22:12:26 -0800 |
commit | e57c0e6731bff376186ecba2530e76b697ab5887 (patch) | |
tree | 1bdd63e70bab1f773d1ceee670f037971dce1d52 /OpenSim/Region/Physics/BulletSPlugin/BSMotors.cs | |
parent | BulletSim: fix odd code that wasn't really recomputing the mass of a (diff) | |
download | opensim-SC_OLD-e57c0e6731bff376186ecba2530e76b697ab5887.zip opensim-SC_OLD-e57c0e6731bff376186ecba2530e76b697ab5887.tar.gz opensim-SC_OLD-e57c0e6731bff376186ecba2530e76b697ab5887.tar.bz2 opensim-SC_OLD-e57c0e6731bff376186ecba2530e76b697ab5887.tar.xz |
BulletSim: fix buoyancy so it's properly set by a script when an
object is selected.
Update TODO list.
Diffstat (limited to 'OpenSim/Region/Physics/BulletSPlugin/BSMotors.cs')
-rwxr-xr-x | OpenSim/Region/Physics/BulletSPlugin/BSMotors.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSMotors.cs b/OpenSim/Region/Physics/BulletSPlugin/BSMotors.cs index 9e1a9ba..817a5f7 100755 --- a/OpenSim/Region/Physics/BulletSPlugin/BSMotors.cs +++ b/OpenSim/Region/Physics/BulletSPlugin/BSMotors.cs | |||
@@ -241,8 +241,8 @@ public class BSVMotor : BSMotor | |||
241 | 241 | ||
242 | public override string ToString() | 242 | public override string ToString() |
243 | { | 243 | { |
244 | return String.Format("<{0},curr={1},targ={2},decayTS={3},frictTS={4}>", | 244 | return String.Format("<{0},curr={1},targ={2},lastErr={3},decayTS={4},frictTS={5}>", |
245 | UseName, CurrentValue, TargetValue, TargetValueDecayTimeScale, FrictionTimescale); | 245 | UseName, CurrentValue, TargetValue, LastError, TargetValueDecayTimeScale, FrictionTimescale); |
246 | } | 246 | } |
247 | } | 247 | } |
248 | 248 | ||