aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/ODECharacter.cs11
-rw-r--r--OpenSim/Region/Physics/OdePlugin/ODEPrim.cs12
2 files changed, 21 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
index a2229e8..6b8d1e2 100644
--- a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
+++ b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs
@@ -733,7 +733,17 @@ namespace OpenSim.Region.Physics.OdePlugin
733 { 733 {
734 734
735 } 735 }
736
737 public override void VehicleFlagsSet(int flags)
738 {
736 739
740 }
741
742 public override void VehicleFlagsRemove(int flags)
743 {
744
745 }
746
737 public override void VehicleFlags(int param, bool remove) 747 public override void VehicleFlags(int param, bool remove)
738 { 748 {
739 749
@@ -1210,7 +1220,6 @@ namespace OpenSim.Region.Physics.OdePlugin
1210 1220
1211 public override float APIDDamping{ set { return; } } 1221 public override float APIDDamping{ set { return; } }
1212 1222
1213
1214 public override void SubscribeEvents(int ms) 1223 public override void SubscribeEvents(int ms)
1215 { 1224 {
1216 m_requestedUpdateFrequency = ms; 1225 m_requestedUpdateFrequency = ms;
diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
index 03736d1..9ef2e9c 100644
--- a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
+++ b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
@@ -2354,6 +2354,16 @@ Console.WriteLine(" JointCreateFixed");
2354 { 2354 {
2355 m_vehicle.ProcessRotationVehicleParam((Vehicle) param, rotation); 2355 m_vehicle.ProcessRotationVehicleParam((Vehicle) param, rotation);
2356 } 2356 }
2357
2358 public override void VehicleFlagsSet(int flags)
2359 {
2360
2361 }
2362
2363 public override void VehicleFlagsRemove(int flags)
2364 {
2365
2366 }
2357 2367
2358 public override void VehicleFlags(int param, bool remove) 2368 public override void VehicleFlags(int param, bool remove)
2359 { 2369 {
@@ -2831,7 +2841,7 @@ Console.WriteLine(" JointCreateFixed");
2831 } 2841 }
2832 public override bool PIDActive { set { m_usePID = value; } } 2842 public override bool PIDActive { set { m_usePID = value; } }
2833 public override float PIDTau { set { m_PIDTau = value; } } 2843 public override float PIDTau { set { m_PIDTau = value; } }
2834 2844
2835 public override float PIDHoverHeight { set { m_PIDHoverHeight = value; ; } } 2845 public override float PIDHoverHeight { set { m_PIDHoverHeight = value; ; } }
2836 public override bool PIDHoverActive { set { m_useHoverPID = value; } } 2846 public override bool PIDHoverActive { set { m_useHoverPID = value; } }
2837 public override PIDHoverType PIDHoverType { set { m_PIDHoverType = value; } } 2847 public override PIDHoverType PIDHoverType { set { m_PIDHoverType = value; } }