* Whoops, forgot the water heightfield.

trunk
Teravus Ovares 2009-07-22 04:11:51 +00:00
parent 9f4b8260c2
commit e2e43f1ab7
2 changed files with 5 additions and 2 deletions

View File

@ -236,7 +236,10 @@ namespace OpenSim.Region.Physics.OdePlugin
return;
if (g2 == m_scene.LandGeom)
return;
if (g1 == m_scene.WaterGeom)
return;
if (g2 == m_scene.WaterGeom)
return;

View File

@ -179,7 +179,7 @@ namespace OpenSim.Region.Physics.OdePlugin
private readonly IntPtr contactgroup;
internal IntPtr LandGeom;
private IntPtr WaterGeom;
internal IntPtr WaterGeom;
private float nmTerrainContactFriction = 255.0f;
private float nmTerrainContactBounce = 0.1f;