diff options
author | Teravus Ovares | 2008-03-14 05:22:52 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-03-14 05:22:52 +0000 |
commit | abacfba287efe89ead9bff529d62f65a253eceb8 (patch) | |
tree | a6562417f9bdfa499bfae9f50caffbf11e713ea4 /OpenSim/Region/Physics/OdePlugin/ODEPrim.cs | |
parent | Update svn properties. (diff) | |
download | opensim-SC_OLD-abacfba287efe89ead9bff529d62f65a253eceb8.zip opensim-SC_OLD-abacfba287efe89ead9bff529d62f65a253eceb8.tar.gz opensim-SC_OLD-abacfba287efe89ead9bff529d62f65a253eceb8.tar.bz2 opensim-SC_OLD-abacfba287efe89ead9bff529d62f65a253eceb8.tar.xz |
* Preliminary work with the ODEPlugin to collect collision data.
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/ODEPrim.cs')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/ODEPrim.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs index 6a38037..5370ddd 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs | |||
@@ -61,6 +61,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
61 | private bool m_taintPhysics = false; | 61 | private bool m_taintPhysics = false; |
62 | private bool m_collidesLand = true; | 62 | private bool m_collidesLand = true; |
63 | private bool m_collidesWater = false; | 63 | private bool m_collidesWater = false; |
64 | public bool m_returnCollisions = false; | ||
64 | 65 | ||
65 | // Default we're a Geometry | 66 | // Default we're a Geometry |
66 | private CollisionCategories m_collisionCategories = (CollisionCategories.Geom ); | 67 | private CollisionCategories m_collisionCategories = (CollisionCategories.Geom ); |
@@ -203,7 +204,9 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
203 | 204 | ||
204 | public override uint LocalID | 205 | public override uint LocalID |
205 | { | 206 | { |
206 | set { m_localID = value; } | 207 | set { |
208 | //m_log.Info("[PHYSICS]: Setting TrackerID: " + value); | ||
209 | m_localID = value; } | ||
207 | } | 210 | } |
208 | 211 | ||
209 | public override bool Grabbed | 212 | public override bool Grabbed |