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 | |
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')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | 10 | ||||
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/ODEPrim.cs | 10 |
2 files changed, 14 insertions, 6 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 |
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 |