aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs
diff options
context:
space:
mode:
authorubit2012-10-04 09:16:21 +0200
committerubit2012-10-04 09:16:21 +0200
commit717802ab09660724366d8aa615fc9af62f6f593c (patch)
treed48f113e936237b14124930ee693f56a59d0368d /OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs
parentMerge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork (diff)
parent more changes and more non active code (diff)
downloadopensim-SC-717802ab09660724366d8aa615fc9af62f6f593c.zip
opensim-SC-717802ab09660724366d8aa615fc9af62f6f593c.tar.gz
opensim-SC-717802ab09660724366d8aa615fc9af62f6f593c.tar.bz2
opensim-SC-717802ab09660724366d8aa615fc9af62f6f593c.tar.xz
Merge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork
Diffstat (limited to 'OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs')
-rw-r--r--OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs12
1 files changed, 11 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs b/OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs
index d426112..d758c85 100644
--- a/OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs
+++ b/OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs
@@ -77,8 +77,9 @@ namespace OpenSim.Region.Physics.OdePlugin
77 77
78 public float physCost = 0.0f; 78 public float physCost = 0.0f;
79 public float streamCost = 0; 79 public float streamCost = 0;
80 public MeshWorkerChange changed;
80 public byte shapetype = 0; 81 public byte shapetype = 0;
81 public bool canColide = true; 82 public bool NoColide = false;
82 public bool hasOBB = false; 83 public bool hasOBB = false;
83 public bool hasMeshVolume = false; 84 public bool hasMeshVolume = false;
84 } 85 }
@@ -132,6 +133,14 @@ namespace OpenSim.Region.Physics.OdePlugin
132 133
133 light = 7 // compatibility with old viewers 134 light = 7 // compatibility with old viewers
134 } 135 }
136 [Flags]
137 public enum MeshWorkerChange : uint
138 {
139 none = 0,
140 size = 1,
141 shape = 2,
142 shapetype = 3,
143 }
135 144
136 public enum changes : int 145 public enum changes : int
137 { 146 {
@@ -170,6 +179,7 @@ namespace OpenSim.Region.Physics.OdePlugin
170 179
171 Size, 180 Size,
172 Shape, 181 Shape,
182 PhysRepData,
173 183
174 CollidesWater, 184 CollidesWater,
175 VolumeDtc, 185 VolumeDtc,