aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/PhysicsModules/BulletS/BSScene.cs
diff options
context:
space:
mode:
authorUbitUmarov2016-07-04 09:13:20 +0100
committerUbitUmarov2016-07-04 09:13:20 +0100
commit259824fbc4d86ad624f0b146c3e04ea850b0b8b6 (patch)
tree8be759ac6ba90223e72c9aface7ba46efa1c3b68 /OpenSim/Region/PhysicsModules/BulletS/BSScene.cs
parentadd EngineName also to old ODE (diff)
downloadopensim-SC_OLD-259824fbc4d86ad624f0b146c3e04ea850b0b8b6.zip
opensim-SC_OLD-259824fbc4d86ad624f0b146c3e04ea850b0b8b6.tar.gz
opensim-SC_OLD-259824fbc4d86ad624f0b146c3e04ea850b0b8b6.tar.bz2
opensim-SC_OLD-259824fbc4d86ad624f0b146c3e04ea850b0b8b6.tar.xz
add EngineName also to the others
Diffstat (limited to 'OpenSim/Region/PhysicsModules/BulletS/BSScene.cs')
-rw-r--r--OpenSim/Region/PhysicsModules/BulletS/BSScene.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/PhysicsModules/BulletS/BSScene.cs b/OpenSim/Region/PhysicsModules/BulletS/BSScene.cs
index bd9f325..9b677be 100644
--- a/OpenSim/Region/PhysicsModules/BulletS/BSScene.cs
+++ b/OpenSim/Region/PhysicsModules/BulletS/BSScene.cs
@@ -212,6 +212,11 @@ namespace OpenSim.Region.PhysicsModule.BulletS
212 get { return "BulletSim"; } 212 get { return "BulletSim"; }
213 } 213 }
214 214
215 public string Version
216 {
217 get { return "1.0"; }
218 }
219
215 public Type ReplaceableInterface 220 public Type ReplaceableInterface
216 { 221 {
217 get { return null; } 222 get { return null; }
@@ -245,6 +250,7 @@ namespace OpenSim.Region.PhysicsModule.BulletS
245 EngineType = Name; 250 EngineType = Name;
246 RegionName = scene.RegionInfo.RegionName; 251 RegionName = scene.RegionInfo.RegionName;
247 PhysicsSceneName = EngineType + "/" + RegionName; 252 PhysicsSceneName = EngineType + "/" + RegionName;
253 EngineName = Name + " " + Version;
248 254
249 scene.RegisterModuleInterface<PhysicsScene>(this); 255 scene.RegisterModuleInterface<PhysicsScene>(this);
250 Vector3 extent = new Vector3(scene.RegionInfo.RegionSizeX, scene.RegionInfo.RegionSizeY, scene.RegionInfo.RegionSizeZ); 256 Vector3 extent = new Vector3(scene.RegionInfo.RegionSizeX, scene.RegionInfo.RegionSizeY, scene.RegionInfo.RegionSizeZ);