aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Terrain/FileLoaders/GenericSystemDrawing.cs
diff options
context:
space:
mode:
authorGarmin Kawaguichi2012-04-03 16:56:51 +0200
committerMelanie2012-04-03 20:06:03 +0100
commit9a9923405a956026b1b67b4f6f993a292b230f67 (patch)
treef8632cdbf14dfb601330be6d080e2ec0cb36896f /OpenSim/Region/CoreModules/World/Terrain/FileLoaders/GenericSystemDrawing.cs
parentFix more SOP.PhysActor race conditions in LSL_Api (diff)
downloadopensim-SC_OLD-9a9923405a956026b1b67b4f6f993a292b230f67.zip
opensim-SC_OLD-9a9923405a956026b1b67b4f6f993a292b230f67.tar.gz
opensim-SC_OLD-9a9923405a956026b1b67b4f6f993a292b230f67.tar.bz2
opensim-SC_OLD-9a9923405a956026b1b67b4f6f993a292b230f67.tar.xz
terrain save-tile extensions Signed-off-by: Garmin Kawaguichi <garmin.kawaguichi@magalaxie.com>
Signed-off-by: Melanie <melanie@t-data.com>
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Terrain/FileLoaders/GenericSystemDrawing.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/Terrain/FileLoaders/GenericSystemDrawing.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Terrain/FileLoaders/GenericSystemDrawing.cs b/OpenSim/Region/CoreModules/World/Terrain/FileLoaders/GenericSystemDrawing.cs
index 58925fd..da81dc1 100644
--- a/OpenSim/Region/CoreModules/World/Terrain/FileLoaders/GenericSystemDrawing.cs
+++ b/OpenSim/Region/CoreModules/World/Terrain/FileLoaders/GenericSystemDrawing.cs
@@ -177,6 +177,12 @@ namespace OpenSim.Region.CoreModules.World.Terrain.FileLoaders
177 return "SYS.DRAWING"; 177 return "SYS.DRAWING";
178 } 178 }
179 179
180 //Returns true if this extension is supported for terrain save-tile
181 public virtual bool SupportsTileSave()
182 {
183 return false;
184 }
185
180 /// <summary> 186 /// <summary>
181 /// Protected method, generates a grayscale bitmap 187 /// Protected method, generates a grayscale bitmap
182 /// image from a specified terrain channel. 188 /// image from a specified terrain channel.