aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/ODEPrim.cs12
1 files changed, 11 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
index 03736d1..39cfa49 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 VehicleFlags(flags, false);
2361 }
2362
2363 public override void VehicleFlagsRemove(int flags)
2364 {
2365 VehicleFlags(flags, true);
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; } }