diff options
author | Teravus Ovares | 2009-04-10 06:01:29 +0000 |
---|---|---|
committer | Teravus Ovares | 2009-04-10 06:01:29 +0000 |
commit | 10f5615573cf087c20ae5eb967e5698d5b23d5da (patch) | |
tree | b298ba3d00b21270837bab48831cb69703c03480 /OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETCharacter.cs | |
parent | * Fixes a bug in MRM scripting whereby the Touch flag is never enabled for On... (diff) | |
download | opensim-SC_OLD-10f5615573cf087c20ae5eb967e5698d5b23d5da.zip opensim-SC_OLD-10f5615573cf087c20ae5eb967e5698d5b23d5da.tar.gz opensim-SC_OLD-10f5615573cf087c20ae5eb967e5698d5b23d5da.tar.bz2 opensim-SC_OLD-10f5615573cf087c20ae5eb967e5698d5b23d5da.tar.xz |
* Tweak the character controller some more
* Add cursory integration with script engine.
* LLMoveToTarget, LLSetBouyancy, LLSetStatus (Physical only), LLApplyImpulse, LLApplyTorque, LLPushObject.. etc.
* Still missing linked physical active and LLSetStatus with an axis lock.
Diffstat (limited to 'OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETCharacter.cs')
-rw-r--r-- | OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETCharacter.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETCharacter.cs b/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETCharacter.cs index c584cd6..c0a016e 100644 --- a/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETCharacter.cs +++ b/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETCharacter.cs | |||
@@ -963,7 +963,7 @@ namespace OpenSim.Region.Physics.BulletDotNETPlugin | |||
963 | if (m_flying) | 963 | if (m_flying) |
964 | { | 964 | { |
965 | // Slight PID correction | 965 | // Slight PID correction |
966 | vec.Z += (((-1 * m_parent_scene.gravityz) * m_mass) * 0.035f); | 966 | vec.Z += (((-1 * m_parent_scene.gravityz) * m_mass) * 0.06f); |
967 | 967 | ||
968 | 968 | ||
969 | //auto fly height. Kitto Flora | 969 | //auto fly height. Kitto Flora |