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 973aa84..010d97f 100644
--- a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
+++ b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
@@ -2352,6 +2352,16 @@ Console.WriteLine(" JointCreateFixed");
2352 { 2352 {
2353 m_vehicle.ProcessRotationVehicleParam((Vehicle) param, rotation); 2353 m_vehicle.ProcessRotationVehicleParam((Vehicle) param, rotation);
2354 } 2354 }
2355
2356 public override void VehicleFlagsSet(int flags)
2357 {
2358
2359 }
2360
2361 public override void VehicleFlagsRemove(int flags)
2362 {
2363
2364 }
2355 2365
2356 public override void SetVolumeDetect(int param) 2366 public override void SetVolumeDetect(int param)
2357 { 2367 {
@@ -2824,7 +2834,7 @@ Console.WriteLine(" JointCreateFixed");
2824 } 2834 }
2825 public override bool PIDActive { set { m_usePID = value; } } 2835 public override bool PIDActive { set { m_usePID = value; } }
2826 public override float PIDTau { set { m_PIDTau = value; } } 2836 public override float PIDTau { set { m_PIDTau = value; } }
2827 2837
2828 public override float PIDHoverHeight { set { m_PIDHoverHeight = value; ; } } 2838 public override float PIDHoverHeight { set { m_PIDHoverHeight = value; ; } }
2829 public override bool PIDHoverActive { set { m_useHoverPID = value; } } 2839 public override bool PIDHoverActive { set { m_useHoverPID = value; } }
2830 public override PIDHoverType PIDHoverType { set { m_PIDHoverType = value; } } 2840 public override PIDHoverType PIDHoverType { set { m_PIDHoverType = value; } }