diff options
author | Teravus Ovares | 2008-03-25 03:36:31 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-03-25 03:36:31 +0000 |
commit | a21112cceedfc93840b935feae4ad8725c4afb48 (patch) | |
tree | 43efce03cfc00168c04579e1cf3611eebde8ebde /OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs | |
parent | Added monodevelop support to runprebuild.sh (diff) | |
download | opensim-SC_OLD-a21112cceedfc93840b935feae4ad8725c4afb48.zip opensim-SC_OLD-a21112cceedfc93840b935feae4ad8725c4afb48.tar.gz opensim-SC_OLD-a21112cceedfc93840b935feae4ad8725c4afb48.tar.bz2 opensim-SC_OLD-a21112cceedfc93840b935feae4ad8725c4afb48.tar.xz |
* Adds llMoveToTarget and llStopMoveToTarget support to the ODEPlugin.
* It doesn't generate at_target events, because they don't exist yet in the script engine.
* The Tau is different, however, compatible with scripts I tested.
* Not perfect... but pretty good.
Diffstat (limited to 'OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs')
-rw-r--r-- | OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs b/OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs index 3541b5c..2d00bdb 100644 --- a/OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs +++ b/OpenSim/Region/Physics/PhysXPlugin/PhysXPlugin.cs | |||
@@ -433,6 +433,9 @@ namespace OpenSim.Region.Physics.PhysXPlugin | |||
433 | { | 433 | { |
434 | 434 | ||
435 | } | 435 | } |
436 | public override PhysicsVector PIDTarget { set { return; } } | ||
437 | public override bool PIDActive { set { return; } } | ||
438 | public override float PIDTau { set { return; } } | ||
436 | } | 439 | } |
437 | 440 | ||
438 | 441 | ||
@@ -650,5 +653,8 @@ namespace OpenSim.Region.Physics.PhysXPlugin | |||
650 | public override void CrossingFailure() | 653 | public override void CrossingFailure() |
651 | { | 654 | { |
652 | } | 655 | } |
656 | public override PhysicsVector PIDTarget { set { return; } } | ||
657 | public override bool PIDActive { set { return; } } | ||
658 | public override float PIDTau { set { return; } } | ||
653 | } | 659 | } |
654 | } | 660 | } |