diff options
author | Dr Scofield | 2009-05-22 14:57:00 +0000 |
---|---|---|
committer | Dr Scofield | 2009-05-22 14:57:00 +0000 |
commit | 1d02636c27de64f8acec5bb9a76f8659f0bfdd2b (patch) | |
tree | a54b14f51877472031e92beee26f1cf72e4f2b4c /OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETScene.cs | |
parent | converting Chat module and Concierge module to new style region modules (diff) | |
download | opensim-SC_OLD-1d02636c27de64f8acec5bb9a76f8659f0bfdd2b.zip opensim-SC_OLD-1d02636c27de64f8acec5bb9a76f8659f0bfdd2b.tar.gz opensim-SC_OLD-1d02636c27de64f8acec5bb9a76f8659f0bfdd2b.tar.bz2 opensim-SC_OLD-1d02636c27de64f8acec5bb9a76f8659f0bfdd2b.tar.xz |
cleaning out warnings.
NOTE: we currently have a gazillion warnings caused stuff flagged as
"obsolete" (OGS1 stuff) --- what's up with that?
Diffstat (limited to 'OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETScene.cs')
-rw-r--r-- | OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETScene.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETScene.cs b/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETScene.cs index 0a375b2..f006cf1 100644 --- a/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETScene.cs +++ b/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETScene.cs | |||
@@ -44,7 +44,7 @@ namespace OpenSim.Region.Physics.BulletDotNETPlugin | |||
44 | { | 44 | { |
45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
46 | 46 | ||
47 | private string m_sceneIdentifier = string.Empty; | 47 | // private string m_sceneIdentifier = string.Empty; |
48 | 48 | ||
49 | private List<BulletDotNETCharacter> m_characters = new List<BulletDotNETCharacter>(); | 49 | private List<BulletDotNETCharacter> m_characters = new List<BulletDotNETCharacter>(); |
50 | private List<BulletDotNETPrim> m_prims = new List<BulletDotNETPrim>(); | 50 | private List<BulletDotNETPrim> m_prims = new List<BulletDotNETPrim>(); |
@@ -76,7 +76,7 @@ namespace OpenSim.Region.Physics.BulletDotNETPlugin | |||
76 | private float avMovementDivisorWalk = 1.8f; | 76 | private float avMovementDivisorWalk = 1.8f; |
77 | private float avMovementDivisorRun = 0.8f; | 77 | private float avMovementDivisorRun = 0.8f; |
78 | 78 | ||
79 | private float minimumGroundFlightOffset = 3f; | 79 | // private float minimumGroundFlightOffset = 3f; |
80 | 80 | ||
81 | public bool meshSculptedPrim = true; | 81 | public bool meshSculptedPrim = true; |
82 | 82 | ||
@@ -98,7 +98,7 @@ namespace OpenSim.Region.Physics.BulletDotNETPlugin | |||
98 | private float[] _origheightmap; // Used for Fly height. Kitto Flora | 98 | private float[] _origheightmap; // Used for Fly height. Kitto Flora |
99 | private bool usingGImpactAlgorithm = false; | 99 | private bool usingGImpactAlgorithm = false; |
100 | 100 | ||
101 | private IConfigSource m_config; | 101 | // private IConfigSource m_config; |
102 | private readonly btVector3 worldAabbMin = new btVector3(-10f, -10f, 0); | 102 | private readonly btVector3 worldAabbMin = new btVector3(-10f, -10f, 0); |
103 | private readonly btVector3 worldAabbMax = new btVector3((int)Constants.RegionSize + 10f, (int)Constants.RegionSize + 10f, 9000); | 103 | private readonly btVector3 worldAabbMax = new btVector3((int)Constants.RegionSize + 10f, (int)Constants.RegionSize + 10f, 9000); |
104 | 104 | ||
@@ -107,7 +107,7 @@ namespace OpenSim.Region.Physics.BulletDotNETPlugin | |||
107 | 107 | ||
108 | public BulletDotNETScene(string sceneIdentifier) | 108 | public BulletDotNETScene(string sceneIdentifier) |
109 | { | 109 | { |
110 | m_sceneIdentifier = sceneIdentifier; | 110 | // m_sceneIdentifier = sceneIdentifier; |
111 | VectorZero = new btVector3(0, 0, 0); | 111 | VectorZero = new btVector3(0, 0, 0); |
112 | QuatIdentity = new btQuaternion(0, 0, 0, 1); | 112 | QuatIdentity = new btQuaternion(0, 0, 0, 1); |
113 | TransZero = new btTransform(QuatIdentity, VectorZero); | 113 | TransZero = new btTransform(QuatIdentity, VectorZero); |
@@ -119,7 +119,7 @@ namespace OpenSim.Region.Physics.BulletDotNETPlugin | |||
119 | public override void Initialise(IMesher meshmerizer, IConfigSource config) | 119 | public override void Initialise(IMesher meshmerizer, IConfigSource config) |
120 | { | 120 | { |
121 | mesher = meshmerizer; | 121 | mesher = meshmerizer; |
122 | m_config = config; | 122 | // m_config = config; |
123 | /* | 123 | /* |
124 | if (Environment.OSVersion.Platform == PlatformID.Unix) | 124 | if (Environment.OSVersion.Platform == PlatformID.Unix) |
125 | { | 125 | { |