diff options
author | Charles Krinke | 2008-09-28 20:20:32 +0000 |
---|---|---|
committer | Charles Krinke | 2008-09-28 20:20:32 +0000 |
commit | 37478629995e6c113fa1ccbd56eb948c64e0f594 (patch) | |
tree | 7d468079beabb2547c7add896af59f29bef3b6b3 /OpenSim/Region/Physics/POSPlugin/POSCharacter.cs | |
parent | Mantis #1922 (diff) | |
download | opensim-SC-37478629995e6c113fa1ccbd56eb948c64e0f594.zip opensim-SC-37478629995e6c113fa1ccbd56eb948c64e0f594.tar.gz opensim-SC-37478629995e6c113fa1ccbd56eb948c64e0f594.tar.bz2 opensim-SC-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/POSPlugin/POSCharacter.cs')
-rw-r--r-- | OpenSim/Region/Physics/POSPlugin/POSCharacter.cs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/POSPlugin/POSCharacter.cs b/OpenSim/Region/Physics/POSPlugin/POSCharacter.cs index 6ab5d88..719d4cf 100644 --- a/OpenSim/Region/Physics/POSPlugin/POSCharacter.cs +++ b/OpenSim/Region/Physics/POSPlugin/POSCharacter.cs | |||
@@ -159,10 +159,14 @@ namespace OpenSim.Region.Physics.POSPlugin | |||
159 | set { return; } | 159 | set { return; } |
160 | } | 160 | } |
161 | 161 | ||
162 | public override float VehicleFloatParam | 162 | public override void VehicleFloatParam(int param, float value) |
163 | { | 163 | { |
164 | get { return 0f; } | 164 | |
165 | set { return; } | 165 | } |
166 | |||
167 | public override void VehicleVectorParam(int param, PhysicsVector value) | ||
168 | { | ||
169 | |||
166 | } | 170 | } |
167 | 171 | ||
168 | public override PhysicsVector CenterOfMass | 172 | public override PhysicsVector CenterOfMass |