aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/POSPlugin/POSPrim.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/POSPlugin/POSPrim.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 '')
-rw-r--r--OpenSim/Region/Physics/POSPlugin/POSPrim.cs10
1 files changed, 7 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/POSPlugin/POSPrim.cs b/OpenSim/Region/Physics/POSPlugin/POSPrim.cs
index c5cb91a..a674e77 100644
--- a/OpenSim/Region/Physics/POSPlugin/POSPrim.cs
+++ b/OpenSim/Region/Physics/POSPlugin/POSPrim.cs
@@ -121,10 +121,14 @@ namespace OpenSim.Region.Physics.POSPlugin
121 set { return; } 121 set { return; }
122 } 122 }
123 123
124 public override float VehicleFloatParam 124 public override void VehicleFloatParam(int param, float value)
125 { 125 {
126 get { return 0f; } 126
127 set { return; } 127 }
128
129 public override void VehicleVectorParam(int param, PhysicsVector value)
130 {
131
128 } 132 }
129 133
130 public override PhysicsVector CenterOfMass 134 public override PhysicsVector CenterOfMass