aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/PhysicsModules
diff options
context:
space:
mode:
authoronefang2020-09-08 21:17:45 +1000
committeronefang2020-09-08 21:17:45 +1000
commitdcfd54b7608093d509cd045a152a4cde7317f66f (patch)
tree593eb822c05a6d209707593732e7e0fac4984663 /OpenSim/Region/PhysicsModules
parentVarious database fixups. (diff)
downloadopensim-SC-dcfd54b7608093d509cd045a152a4cde7317f66f.zip
opensim-SC-dcfd54b7608093d509cd045a152a4cde7317f66f.tar.gz
opensim-SC-dcfd54b7608093d509cd045a152a4cde7317f66f.tar.bz2
opensim-SC-dcfd54b7608093d509cd045a152a4cde7317f66f.tar.xz
Move various paths out of the bin directory.
Diffstat (limited to 'OpenSim/Region/PhysicsModules')
-rw-r--r--OpenSim/Region/PhysicsModules/Meshing/Meshmerizer/Meshmerizer.cs2
-rw-r--r--OpenSim/Region/PhysicsModules/ubOdeMeshing/Meshmerizer.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/PhysicsModules/Meshing/Meshmerizer/Meshmerizer.cs b/OpenSim/Region/PhysicsModules/Meshing/Meshmerizer/Meshmerizer.cs
index de39d0e..93c2986 100644
--- a/OpenSim/Region/PhysicsModules/Meshing/Meshmerizer/Meshmerizer.cs
+++ b/OpenSim/Region/PhysicsModules/Meshing/Meshmerizer/Meshmerizer.cs
@@ -99,7 +99,7 @@ namespace OpenSim.Region.PhysicsModule.Meshing
99 99
100 IConfig mesh_config = source.Configs["Mesh"]; 100 IConfig mesh_config = source.Configs["Mesh"];
101 101
102 decodedSculptMapPath = config.GetString("DecodedSculptMapPath", "j2kDecodeCache"); 102 decodedSculptMapPath = config.GetString("DecodedSculptMapPath", System.IO.Path.Combine(Util.cacheDir(), "j2kDecodeCache"));
103 cacheSculptMaps = config.GetBoolean("CacheSculptMaps", cacheSculptMaps); 103 cacheSculptMaps = config.GetBoolean("CacheSculptMaps", cacheSculptMaps);
104 if (mesh_config != null) 104 if (mesh_config != null)
105 { 105 {
diff --git a/OpenSim/Region/PhysicsModules/ubOdeMeshing/Meshmerizer.cs b/OpenSim/Region/PhysicsModules/ubOdeMeshing/Meshmerizer.cs
index ac32f75..66c376c 100644
--- a/OpenSim/Region/PhysicsModules/ubOdeMeshing/Meshmerizer.cs
+++ b/OpenSim/Region/PhysicsModules/ubOdeMeshing/Meshmerizer.cs
@@ -64,7 +64,7 @@ namespace OpenSim.Region.PhysicsModule.ubODEMeshing
64 64
65 public bool doMeshFileCache = true; 65 public bool doMeshFileCache = true;
66 public bool doCacheExpire = true; 66 public bool doCacheExpire = true;
67 public string cachePath = "MeshCache"; 67 public string cachePath = System.IO.Path.Combine(Util.cacheDir(), "MeshCache");
68 public TimeSpan CacheExpire; 68 public TimeSpan CacheExpire;
69 69
70// const string baseDir = "rawFiles"; 70// const string baseDir = "rawFiles";