aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/ChOdePlugin/ODEDynamics.cs
diff options
context:
space:
mode:
authorKitto Flora2010-01-21 19:31:02 -0500
committerKitto Flora2010-01-21 19:31:02 -0500
commit1abb70cc73c997c08a416fecf689b83453f853d0 (patch)
tree1b8afb44aa5c280f28b0fc9b00486cd43b7dd1a2 /OpenSim/Region/Physics/ChOdePlugin/ODEDynamics.cs
parentChODE Object Linear Motion update (diff)
downloadopensim-SC-1abb70cc73c997c08a416fecf689b83453f853d0.zip
opensim-SC-1abb70cc73c997c08a416fecf689b83453f853d0.tar.gz
opensim-SC-1abb70cc73c997c08a416fecf689b83453f853d0.tar.bz2
opensim-SC-1abb70cc73c997c08a416fecf689b83453f853d0.tar.xz
Add glue for llSetVehicleFlags(), llRemoveVehicleFlags(). ChODE: Add associated methods.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/ChOdePlugin/ODEDynamics.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/ChOdePlugin/ODEDynamics.cs b/OpenSim/Region/Physics/ChOdePlugin/ODEDynamics.cs
index 9e145ec..14d5caa 100644
--- a/OpenSim/Region/Physics/ChOdePlugin/ODEDynamics.cs
+++ b/OpenSim/Region/Physics/ChOdePlugin/ODEDynamics.cs
@@ -286,7 +286,17 @@ namespace OpenSim.Region.Physics.OdePlugin
286 } 286 }
287 287
288 }//end ProcessRotationVehicleParam 288 }//end ProcessRotationVehicleParam
289
290 internal void ProcessFlagsVehicleSet(int flags)
291 {
292 m_flags |= (VehicleFlag)flags;
293 }
289 294
295 internal void ProcessFlagsVehicleRemove(int flags)
296 {
297 m_flags &= ~((VehicleFlag)flags);
298 }
299
290 internal void ProcessTypeChange(Vehicle pType) 300 internal void ProcessTypeChange(Vehicle pType)
291 { 301 {
292 // Set Defaults For Type 302 // Set Defaults For Type