diff options
author | Teravus Ovares | 2009-07-22 04:11:51 +0000 |
---|---|---|
committer | Teravus Ovares | 2009-07-22 04:11:51 +0000 |
commit | e2e43f1ab7b412325e6f57790a4a717b8f918bd5 (patch) | |
tree | e17e89deeb7e9e470bfb123ba1ac3141e414f3ad /OpenSim/Region/Physics/OdePlugin/ODERayCastRequestManager.cs | |
parent | * Exclude heightfield geom from the raycast test. (diff) | |
download | opensim-SC_OLD-e2e43f1ab7b412325e6f57790a4a717b8f918bd5.zip opensim-SC_OLD-e2e43f1ab7b412325e6f57790a4a717b8f918bd5.tar.gz opensim-SC_OLD-e2e43f1ab7b412325e6f57790a4a717b8f918bd5.tar.bz2 opensim-SC_OLD-e2e43f1ab7b412325e6f57790a4a717b8f918bd5.tar.xz |
* Whoops, forgot the water heightfield.
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/ODERayCastRequestManager.cs')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/ODERayCastRequestManager.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODERayCastRequestManager.cs b/OpenSim/Region/Physics/OdePlugin/ODERayCastRequestManager.cs index 18e5ec5..8ea8668 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODERayCastRequestManager.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODERayCastRequestManager.cs | |||
@@ -236,7 +236,10 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
236 | return; | 236 | return; |
237 | if (g2 == m_scene.LandGeom) | 237 | if (g2 == m_scene.LandGeom) |
238 | return; | 238 | return; |
239 | 239 | if (g1 == m_scene.WaterGeom) | |
240 | return; | ||
241 | if (g2 == m_scene.WaterGeom) | ||
242 | return; | ||
240 | 243 | ||
241 | 244 | ||
242 | 245 | ||