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/OdePlugin/ODEPrim.cs | |
parent | Mantis #1922 (diff) | |
download | opensim-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/ODEPrim.cs')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/ODEPrim.cs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs index a6116de..3af73cd 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs | |||
@@ -1876,10 +1876,14 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1876 | set { m_force = value; } | 1876 | set { m_force = value; } |
1877 | } | 1877 | } |
1878 | 1878 | ||
1879 | public override float VehicleFloatParam | 1879 | public override void VehicleFloatParam(int param, float value) |
1880 | { | 1880 | { |
1881 | get { return 0f; } | 1881 | |
1882 | set { return; } | 1882 | } |
1883 | |||
1884 | public override void VehicleVectorParam(int param, PhysicsVector value) | ||
1885 | { | ||
1886 | |||
1883 | } | 1887 | } |
1884 | 1888 | ||
1885 | public override PhysicsVector CenterOfMass | 1889 | public override PhysicsVector CenterOfMass |