diff options
Diffstat (limited to 'OpenSim/Region/Physics/ChOdePlugin')
-rw-r--r-- | OpenSim/Region/Physics/ChOdePlugin/ODECharacter.cs | 4 | ||||
-rw-r--r-- | OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/ChOdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/ChOdePlugin/ODECharacter.cs index 2eb519f..6dadbe5 100644 --- a/OpenSim/Region/Physics/ChOdePlugin/ODECharacter.cs +++ b/OpenSim/Region/Physics/ChOdePlugin/ODECharacter.cs | |||
@@ -734,6 +734,10 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
734 | 734 | ||
735 | } | 735 | } |
736 | 736 | ||
737 | public override void VehicleFlags(int flags, bool remove) | ||
738 | { | ||
739 | } | ||
740 | |||
737 | public override void VehicleFlagsSet(int flags) | 741 | public override void VehicleFlagsSet(int flags) |
738 | { | 742 | { |
739 | 743 | ||
diff --git a/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs index fb6cb55..e3ac315 100644 --- a/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs +++ b/OpenSim/Region/Physics/ChOdePlugin/ODEPrim.cs | |||
@@ -2442,6 +2442,14 @@ Console.WriteLine(" JointCreateFixed"); | |||
2442 | m_vehicle.ProcessRotationVehicleParam((Vehicle) param, rotation); | 2442 | m_vehicle.ProcessRotationVehicleParam((Vehicle) param, rotation); |
2443 | } | 2443 | } |
2444 | 2444 | ||
2445 | public override void VehicleFlags(int flags, bool remove) | ||
2446 | { | ||
2447 | if (!remove) | ||
2448 | VehicleFlagsSet(flags); | ||
2449 | else | ||
2450 | VehicleFlagsRemove(flags); | ||
2451 | } | ||
2452 | |||
2445 | public override void VehicleFlagsSet(int flags) | 2453 | public override void VehicleFlagsSet(int flags) |
2446 | { | 2454 | { |
2447 | m_vehicle.ProcessFlagsVehicleSet(flags); | 2455 | m_vehicle.ProcessFlagsVehicleSet(flags); |