diff options
author | BlueWall | 2010-09-25 22:36:38 -0400 |
---|---|---|
committer | Melanie | 2010-09-26 17:04:11 +0100 |
commit | b0b4782a2b3c7a86195ad09c1c508856c2885f4d (patch) | |
tree | c8a1fcd118540b07fb5f30d5a15d8dd0bbbba04e /OpenSim/Region/Physics/Manager/ZeroMesher.cs | |
parent | Some cleanup to OpenSimDefaults.ini (diff) | |
download | opensim-SC-b0b4782a2b3c7a86195ad09c1c508856c2885f4d.zip opensim-SC-b0b4782a2b3c7a86195ad09c1c508856c2885f4d.tar.gz opensim-SC-b0b4782a2b3c7a86195ad09c1c508856c2885f4d.tar.bz2 opensim-SC-b0b4782a2b3c7a86195ad09c1c508856c2885f4d.tar.xz |
adding configurable j2kDecodeCache path
allowing the decoded sculpt map cache path to be defined in
the configuration files.
Use DecodedSculpMapPath in the [Startup] section to set
the path. The default is still ./bin/j2kDecodeCache
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Physics/Manager/ZeroMesher.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Manager/ZeroMesher.cs b/OpenSim/Region/Physics/Manager/ZeroMesher.cs index e6e75f9..ba19db6 100644 --- a/OpenSim/Region/Physics/Manager/ZeroMesher.cs +++ b/OpenSim/Region/Physics/Manager/ZeroMesher.cs | |||
@@ -28,6 +28,7 @@ | |||
28 | using System; | 28 | using System; |
29 | using OpenSim.Framework; | 29 | using OpenSim.Framework; |
30 | using OpenMetaverse; | 30 | using OpenMetaverse; |
31 | using Nini.Config; | ||
31 | 32 | ||
32 | /* | 33 | /* |
33 | * This is the zero mesher. | 34 | * This is the zero mesher. |
@@ -53,7 +54,7 @@ namespace OpenSim.Region.Physics.Manager | |||
53 | return "ZeroMesher"; | 54 | return "ZeroMesher"; |
54 | } | 55 | } |
55 | 56 | ||
56 | public IMesher GetMesher() | 57 | public IMesher GetMesher(IConfigSource config) |
57 | { | 58 | { |
58 | return new ZeroMesher(); | 59 | return new ZeroMesher(); |
59 | } | 60 | } |