Implement command "land show". This shows all the parcels on the currently selected region/s

This is useful for diagnostics.  The command is "land show" rather than "show land" because it's implemented as a module specific subcommand.
This commit is contained in:
Justin Clark-Casey (justincc)
2011-01-26 21:12:41 +00:00
parent c4727645b8
commit a0469daf75
5 changed files with 126 additions and 19 deletions

View File

@@ -43,7 +43,11 @@ namespace OpenSim.Region.Framework.Interfaces
LandData LandData { get; set; }
bool[,] LandBitmap { get; set; }
UUID RegionUUID { get; }
Vector3 StartPoint { get; }
Vector3 EndPoint { get; }
bool ContainsPoint(int x, int y);
ILandObject Copy();
void SendLandUpdateToAvatarsOverMe();