add a flag in OpenSim.ini.example for enabling/disabling decoded sculpt map caching for meshing

This commit is contained in:
dahlia
2010-10-07 19:34:46 -07:00
parent 9a5d0984a5
commit 9391c3ffee
2 changed files with 10 additions and 1 deletions

View File

@@ -81,7 +81,8 @@ namespace OpenSim.Region.Physics.Meshing
{
IConfig start_config = config.Configs["Startup"];
decodedSculptMapPath = start_config.GetString("DecodedSculptMapPath","j2kDecodeCache");
decodedSculptMapPath = start_config.GetString("DecodedSculptMapPath","j2kDecodeCache");
cacheSculptMaps = start_config.GetBoolean("CacheSculptMaps", cacheSculptMaps);
try
{