aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs9
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 ///