aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
diff options
context:
space:
mode:
authorCharles Krinke2008-09-28 20:20:32 +0000
committerCharles Krinke2008-09-28 20:20:32 +0000
commit37478629995e6c113fa1ccbd56eb948c64e0f594 (patch)
tree7d468079beabb2547c7add896af59f29bef3b6b3 /OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
parentMantis #1922 (diff)
downloadopensim-SC_OLD-37478629995e6c113fa1ccbd56eb948c64e0f594.zip
opensim-SC_OLD-37478629995e6c113fa1ccbd56eb948c64e0f594.tar.gz
opensim-SC_OLD-37478629995e6c113fa1ccbd56eb948c64e0f594.tar.bz2
opensim-SC_OLD-37478629995e6c113fa1ccbd56eb948c64e0f594.tar.xz
Plumb the connection though from llSetVehicleVectorParam
to the various physics engines. No connection to the underlying physics simulator yet, just plumbing through the various classes.
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/ODECharacter.cs')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/ODECharacter.cs10
1 files changed, 7 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
index 6c1c876..b6dbac0 100644
--- a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
+++ b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
@@ -537,10 +537,14 @@ namespace OpenSim.Region.Physics.OdePlugin
537 set { return; } 537 set { return; }
538 } 538 }
539 539
540 public override float VehicleFloatParam 540 public override void VehicleFloatParam(int param, float value)
541 { 541 {
542 get { return 0f; } 542
543 set { return; } 543 }
544
545 public override void VehicleVectorParam(int param, PhysicsVector value)
546 {
547
544 } 548 }
545 549
546 public override PhysicsVector CenterOfMass 550 public override PhysicsVector CenterOfMass