diff options
author | Robert Adams | 2014-02-02 22:16:01 -0800 |
---|---|---|
committer | Robert Adams | 2014-02-02 22:16:01 -0800 |
commit | 41b6602a775fb0a2a36d60c554364ff8e5efdbce (patch) | |
tree | 2f1572c27c01be4e31a2e17787138f7ed5a9b940 /OpenSim/Region/Application | |
parent | Really add the old parameter names to load oar to keep downward compatibiliy (diff) | |
download | opensim-SC_OLD-41b6602a775fb0a2a36d60c554364ff8e5efdbce.zip opensim-SC_OLD-41b6602a775fb0a2a36d60c554364ff8e5efdbce.tar.gz opensim-SC_OLD-41b6602a775fb0a2a36d60c554364ff8e5efdbce.tar.bz2 opensim-SC_OLD-41b6602a775fb0a2a36d60c554364ff8e5efdbce.tar.xz |
Add "--no-objects" parameter to 'load oar'.
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index a609b77..77b9440 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -268,6 +268,7 @@ namespace OpenSim | |||
268 | m_console.Commands.AddCommand("Archiving", false, "load oar", | 268 | m_console.Commands.AddCommand("Archiving", false, "load oar", |
269 | "load oar [--merge] [--skip-assets]" | 269 | "load oar [--merge] [--skip-assets]" |
270 | + " [--force-terrain] [--force-parcels]" | 270 | + " [--force-terrain] [--force-parcels]" |
271 | + " [--no-objects]" | ||
271 | + " [--rotation degrees] [--rotation-center \"<x,y,z>\"]" | 272 | + " [--rotation degrees] [--rotation-center \"<x,y,z>\"]" |
272 | + " [--displacement \"<x,y,z>\"]" | 273 | + " [--displacement \"<x,y,z>\"]" |
273 | + " [<OAR path>]", | 274 | + " [<OAR path>]", |
@@ -279,6 +280,7 @@ namespace OpenSim | |||
279 | + "--force-parcels forces the loading of parcels from the oar (undoes suppression done by --merge)" + Environment.NewLine | 280 | + "--force-parcels forces the loading of parcels from the oar (undoes suppression done by --merge)" + Environment.NewLine |
280 | + "--rotation specified rotation to be applied to the oar. Specified in degrees." + Environment.NewLine | 281 | + "--rotation specified rotation to be applied to the oar. Specified in degrees." + Environment.NewLine |
281 | + "--rotation-center Location (relative to original OAR) to apply rotation. Default is <128,128,0>" + Environment.NewLine | 282 | + "--rotation-center Location (relative to original OAR) to apply rotation. Default is <128,128,0>" + Environment.NewLine |
283 | + "--no-objects suppresses the addition of any objects (good for loading only the terrain)" + Environment.NewLine | ||
282 | + "The path can be either a filesystem location or a URI." | 284 | + "The path can be either a filesystem location or a URI." |
283 | + " If this is not given then the command looks for an OAR named region.oar in the current directory.", | 285 | + " If this is not given then the command looks for an OAR named region.oar in the current directory.", |
284 | LoadOar); | 286 | LoadOar); |