diff options
author | Robert Adams | 2012-12-24 20:16:10 -0800 |
---|---|---|
committer | Robert Adams | 2012-12-24 20:16:10 -0800 |
commit | 4759a8acee97fa175c078ec72d9b8cf0db96121b (patch) | |
tree | 4d99d5b7ce575b652bf3f7b94e9c4282d7a4f9b9 /OpenSim/Region/Physics/BulletSPlugin/BSParam.cs | |
parent | BulletSim: Fix single physical prim reporting its mass as zero. (diff) | |
download | opensim-SC_OLD-4759a8acee97fa175c078ec72d9b8cf0db96121b.zip opensim-SC_OLD-4759a8acee97fa175c078ec72d9b8cf0db96121b.tar.gz opensim-SC_OLD-4759a8acee97fa175c078ec72d9b8cf0db96121b.tar.bz2 opensim-SC_OLD-4759a8acee97fa175c078ec72d9b8cf0db96121b.tar.xz |
BulletSim: Default avatar density changed to 3.5 which is WAY closer
to the SL value.
Fixed frictin values for physical materials which were just wrong
which caused things that should have slipped to not.
Diffstat (limited to 'OpenSim/Region/Physics/BulletSPlugin/BSParam.cs')
-rwxr-xr-x | OpenSim/Region/Physics/BulletSPlugin/BSParam.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSParam.cs b/OpenSim/Region/Physics/BulletSPlugin/BSParam.cs index 5558ad5..7454718 100755 --- a/OpenSim/Region/Physics/BulletSPlugin/BSParam.cs +++ b/OpenSim/Region/Physics/BulletSPlugin/BSParam.cs | |||
@@ -351,7 +351,7 @@ public static class BSParam | |||
351 | (s) => { return AvatarStandingFriction; }, | 351 | (s) => { return AvatarStandingFriction; }, |
352 | (s,p,l,v) => { AvatarStandingFriction = v; } ), | 352 | (s,p,l,v) => { AvatarStandingFriction = v; } ), |
353 | new ParameterDefn("AvatarDensity", "Density of an avatar. Changed on avatar recreation.", | 353 | new ParameterDefn("AvatarDensity", "Density of an avatar. Changed on avatar recreation.", |
354 | 60f, | 354 | 3.5f, |
355 | (s,cf,p,v) => { AvatarDensity = cf.GetFloat(p, v); }, | 355 | (s,cf,p,v) => { AvatarDensity = cf.GetFloat(p, v); }, |
356 | (s) => { return AvatarDensity; }, | 356 | (s) => { return AvatarDensity; }, |
357 | (s,p,l,v) => { s.UpdateParameterObject((x)=>{AvatarDensity=x;}, p, l, v); } ), | 357 | (s,p,l,v) => { s.UpdateParameterObject((x)=>{AvatarDensity=x;}, p, l, v); } ), |