* For your enjoyment, some RAdmin improvements, namely a new LoadHeightmap method.

This commit is contained in:
Adam Frisby
2008-01-12 03:17:28 +00:00
parent 5d7e120d56
commit bf8ffc7a0c
2 changed files with 48 additions and 0 deletions

View File

@@ -774,6 +774,15 @@ namespace OpenSim.Region.Environment.Scenes
mapTexture.Save(fileName, ImageFormat.Jpeg);
}
/// <summary>
/// Loads a world map from a specified R32 file
/// </summary>
/// <param name="filename">A working R32 file</param>
public void LoadWorldMap(string filename)
{
Terrain.LoadFromFileF32(filename);
}
/// <summary>
/// Loads the World heightmap
/// </summary>