aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin
diff options
context:
space:
mode:
authorCharles Krinke2008-09-28 18:36:30 +0000
committerCharles Krinke2008-09-28 18:36:30 +0000
commit3397236c6c759178bfb77e41ba761fca162a7b5f (patch)
treeacedd8141784442df5c7e682b6a0ee6acebabf37 /OpenSim/Region/Physics/OdePlugin
parentMantis #2288 (diff)
downloadopensim-SC_OLD-3397236c6c759178bfb77e41ba761fca162a7b5f.zip
opensim-SC_OLD-3397236c6c759178bfb77e41ba761fca162a7b5f.tar.gz
opensim-SC_OLD-3397236c6c759178bfb77e41ba761fca162a7b5f.tar.bz2
opensim-SC_OLD-3397236c6c759178bfb77e41ba761fca162a7b5f.tar.xz
Plumb the connection through from llSetVehicleFloatParam
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')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/ODECharacter.cs6
-rw-r--r--OpenSim/Region/Physics/OdePlugin/ODEPrim.cs6
2 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
index 38d4060..6c1c876 100644
--- a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
+++ b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
@@ -537,6 +537,12 @@ namespace OpenSim.Region.Physics.OdePlugin
537 set { return; } 537 set { return; }
538 } 538 }
539 539
540 public override float VehicleFloatParam
541 {
542 get { return 0f; }
543 set { return; }
544 }
545
540 public override PhysicsVector CenterOfMass 546 public override PhysicsVector CenterOfMass
541 { 547 {
542 get { return PhysicsVector.Zero; } 548 get { return PhysicsVector.Zero; }
diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
index 2e75486..a6116de 100644
--- a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
+++ b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
@@ -1876,6 +1876,12 @@ namespace OpenSim.Region.Physics.OdePlugin
1876 set { m_force = value; } 1876 set { m_force = value; }
1877 } 1877 }
1878 1878
1879 public override float VehicleFloatParam
1880 {
1881 get { return 0f; }
1882 set { return; }
1883 }
1884
1879 public override PhysicsVector CenterOfMass 1885 public override PhysicsVector CenterOfMass
1880 { 1886 {
1881 get { return PhysicsVector.Zero; } 1887 get { return PhysicsVector.Zero; }