diff options
author | UbitUmarov | 2012-02-08 15:28:13 +0000 |
---|---|---|
committer | UbitUmarov | 2012-02-08 15:28:13 +0000 |
commit | c75fa8b8a1c4ba9235074e84f9a363483c5220f7 (patch) | |
tree | 10ecaf4a28aa610c218e36b7527da8f01cac6e5a /OpenSim/Region/Physics/Manager/PhysicsScene.cs | |
parent | UbitODE plugin initial commit (diff) | |
download | opensim-SC-c75fa8b8a1c4ba9235074e84f9a363483c5220f7.zip opensim-SC-c75fa8b8a1c4ba9235074e84f9a363483c5220f7.tar.gz opensim-SC-c75fa8b8a1c4ba9235074e84f9a363483c5220f7.tar.bz2 opensim-SC-c75fa8b8a1c4ba9235074e84f9a363483c5220f7.tar.xz |
changes in physics manager, needed for UbitODE
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsScene.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsScene.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsScene.cs b/OpenSim/Region/Physics/Manager/PhysicsScene.cs index 514d9ad..3db71e5 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsScene.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsScene.cs | |||
@@ -225,7 +225,7 @@ namespace OpenSim.Region.Physics.Manager | |||
225 | } | 225 | } |
226 | 226 | ||
227 | public virtual void Combine(PhysicsScene pScene, Vector3 offset, Vector3 extents) {} | 227 | public virtual void Combine(PhysicsScene pScene, Vector3 offset, Vector3 extents) {} |
228 | 228 | public virtual void CombineTerrain(float[] heightMap, Vector3 pOffset) {} | |
229 | public virtual void UnCombine(PhysicsScene pScene) {} | 229 | public virtual void UnCombine(PhysicsScene pScene) {} |
230 | 230 | ||
231 | /// <summary> | 231 | /// <summary> |
@@ -263,5 +263,13 @@ namespace OpenSim.Region.Physics.Manager | |||
263 | { | 263 | { |
264 | return new List<ContactResult>(); | 264 | return new List<ContactResult>(); |
265 | } | 265 | } |
266 | |||
267 | public virtual void RaycastActor(PhysicsActor actor, Vector3 position, Vector3 direction, float length, RaycastCallback retMethod){} | ||
268 | public virtual void RaycastActor(PhysicsActor actor, Vector3 position, Vector3 direction, float length, int Count, RayCallback retMethod) { } | ||
269 | public virtual List<ContactResult> RaycastActor(PhysicsActor actor, Vector3 position, Vector3 direction, float length, int Count) | ||
270 | { | ||
271 | return new List<ContactResult>(); | ||
272 | } | ||
273 | |||
266 | } | 274 | } |
267 | } | 275 | } |