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 06ed8fb..b713142 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 SetVolumeDetect(int param) 747 public override void SetVolumeDetect(int param)
738 { 748 {
739 749
@@ -1205,7 +1215,6 @@ namespace OpenSim.Region.Physics.OdePlugin
1205 1215
1206 public override float APIDDamping{ set { return; } } 1216 public override float APIDDamping{ set { return; } }
1207 1217
1208
1209 public override void SubscribeEvents(int ms) 1218 public override void SubscribeEvents(int ms)
1210 { 1219 {
1211 m_requestedUpdateFrequency = ms; 1220 m_requestedUpdateFrequency = ms;
diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
index 44b2727..f354328 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 SetVolumeDetect(int param) 2368 public override void SetVolumeDetect(int param)
2359 { 2369 {
@@ -2826,7 +2836,7 @@ Console.WriteLine(" JointCreateFixed");
2826 } 2836 }
2827 public override bool PIDActive { set { m_usePID = value; } } 2837 public override bool PIDActive { set { m_usePID = value; } }
2828 public override float PIDTau { set { m_PIDTau = value; } } 2838 public override float PIDTau { set { m_PIDTau = value; } }
2829 2839
2830 public override float PIDHoverHeight { set { m_PIDHoverHeight = value; ; } } 2840 public override float PIDHoverHeight { set { m_PIDHoverHeight = value; ; } }
2831 public override bool PIDHoverActive { set { m_useHoverPID = value; } } 2841 public override bool PIDHoverActive { set { m_useHoverPID = value; } }
2832 public override PIDHoverType PIDHoverType { set { m_PIDHoverType = value; } } 2842 public override PIDHoverType PIDHoverType { set { m_PIDHoverType = value; } }