aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Terrain
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-03-24 02:41:45 +0000
committerJustin Clark-Casey (justincc)2012-03-24 02:41:45 +0000
commitf03c3c062e7829309d76ac76d5d2b2e7bc8b62dc (patch)
tree70b3302999461dc6ed0fa1574b718d51cee1f45f /OpenSim/Region/CoreModules/World/Terrain
parentUse system provided temporary file in "terrain save-tile" to avoid problems w... (diff)
downloadopensim-SC_OLD-f03c3c062e7829309d76ac76d5d2b2e7bc8b62dc.zip
opensim-SC_OLD-f03c3c062e7829309d76ac76d5d2b2e7bc8b62dc.tar.gz
opensim-SC_OLD-f03c3c062e7829309d76ac76d5d2b2e7bc8b62dc.tar.bz2
opensim-SC_OLD-f03c3c062e7829309d76ac76d5d2b2e7bc8b62dc.tar.xz
Hack example on to "terrain save-tile" extended help.
Thanks to Garmin Kawaguichi for the initially suggested text.
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Terrain')
-rw-r--r--OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs b/OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs
index 7c5ea29..17e9737 100644
--- a/OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs
+++ b/OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs
@@ -1199,6 +1199,12 @@ namespace OpenSim.Region.CoreModules.World.Terrain
1199 "Integer"); 1199 "Integer");
1200 saveToTileCommand.AddArgument("minimum Y tile", "The Y region coordinate of the first section on the file", 1200 saveToTileCommand.AddArgument("minimum Y tile", "The Y region coordinate of the first section on the file",
1201 "Integer"); 1201 "Integer");
1202 saveToTileCommand.AddArgument("minimum Y tile", "The Y region coordinate of the first tile on the file\n"
1203 + "= Example =\n"
1204 + "To save a PNG file for a set of map tiles 2 regions wide and 3 regions high from map co-ordinate (9910,10234)\n"
1205 + " # terrain save-tile ST06.png 2 3 9910 10234\n",
1206 "Integer");
1207
1202 // Terrain adjustments 1208 // Terrain adjustments
1203 Command fillRegionCommand = 1209 Command fillRegionCommand =
1204 new Command("fill", CommandIntentions.COMMAND_HAZARDOUS, InterfaceFillTerrain, "Fills the current heightmap with a specified value."); 1210 new Command("fill", CommandIntentions.COMMAND_HAZARDOUS, InterfaceFillTerrain, "Fills the current heightmap with a specified value.");