diff options
author | Adam Frisby | 2008-01-12 03:17:28 +0000 |
---|---|---|
committer | Adam Frisby | 2008-01-12 03:17:28 +0000 |
commit | bf8ffc7a0ca9411bd12b96d19075058e79b6c5e3 (patch) | |
tree | 961ff0cb5e226019cdffecb5be1c2e88c6531eeb /OpenSim/Region/Environment/Scenes | |
parent | Set svn:eol-style. (diff) | |
download | opensim-SC_OLD-bf8ffc7a0ca9411bd12b96d19075058e79b6c5e3.zip opensim-SC_OLD-bf8ffc7a0ca9411bd12b96d19075058e79b6c5e3.tar.gz opensim-SC_OLD-bf8ffc7a0ca9411bd12b96d19075058e79b6c5e3.tar.bz2 opensim-SC_OLD-bf8ffc7a0ca9411bd12b96d19075058e79b6c5e3.tar.xz |
* For your enjoyment, some RAdmin improvements, namely a new LoadHeightmap method.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index d8733f4..5278202 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -775,6 +775,15 @@ namespace OpenSim.Region.Environment.Scenes | |||
775 | } | 775 | } |
776 | 776 | ||
777 | /// <summary> | 777 | /// <summary> |
778 | /// Loads a world map from a specified R32 file | ||
779 | /// </summary> | ||
780 | /// <param name="filename">A working R32 file</param> | ||
781 | public void LoadWorldMap(string filename) | ||
782 | { | ||
783 | Terrain.LoadFromFileF32(filename); | ||
784 | } | ||
785 | |||
786 | /// <summary> | ||
778 | /// Loads the World heightmap | 787 | /// Loads the World heightmap |
779 | /// </summary> | 788 | /// </summary> |
780 | /// | 789 | /// |