aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/PhysicsModules/SharedBase/PhysicsPluginManager.cs
diff options
context:
space:
mode:
authorDiva Canto2015-08-31 09:21:05 -0700
committerDiva Canto2015-08-31 09:21:05 -0700
commit3741edd1c791e87a38805a62530755cbf0c55cab (patch)
tree93993feafe3ae4b7fc67f9cd2cf5218882134295 /OpenSim/Region/PhysicsModules/SharedBase/PhysicsPluginManager.cs
parentMore namespace and dll name changes. Still no functional changes. (diff)
downloadopensim-SC-3741edd1c791e87a38805a62530755cbf0c55cab.zip
opensim-SC-3741edd1c791e87a38805a62530755cbf0c55cab.tar.gz
opensim-SC-3741edd1c791e87a38805a62530755cbf0c55cab.tar.bz2
opensim-SC-3741edd1c791e87a38805a62530755cbf0c55cab.tar.xz
Refactored Meshing modules:
- Moved ZeroMesher from OpenSim.Region.PhysicsModules.SharedBase to OpenSim.Region.PhysicsModules.Meshing - Created subfolder for all Meshmerizer files, also in the same Meshing dll - Made them both region modules, with ZeroMesher being the default one This compiles but doesn't run yet.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/PhysicsModules/SharedBase/PhysicsPluginManager.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/OpenSim/Region/PhysicsModules/SharedBase/PhysicsPluginManager.cs b/OpenSim/Region/PhysicsModules/SharedBase/PhysicsPluginManager.cs
index f7992d5..6316463 100644
--- a/OpenSim/Region/PhysicsModules/SharedBase/PhysicsPluginManager.cs
+++ b/OpenSim/Region/PhysicsModules/SharedBase/PhysicsPluginManager.cs
@@ -51,13 +51,6 @@ namespace OpenSim.Region.PhysicsModules.SharedBase
51 /// </summary> 51 /// </summary>
52 public PhysicsPluginManager() 52 public PhysicsPluginManager()
53 { 53 {
54 // Load "plugins", that are hard coded and not existing in form of an external lib, and hence always
55 // available
56 IMeshingPlugin plugHard;
57 plugHard = new ZeroMesherPlugin();
58 _MeshPlugins.Add(plugHard.GetName(), plugHard);
59
60 m_log.Info("[PHYSICS]: Added meshing engine: " + plugHard.GetName());
61 } 54 }
62 55
63 /// <summary> 56 /// <summary>