minor: add doc to a few parcel methods

This commit is contained in:
Justin Clark-Casey (justincc)
2009-11-25 17:49:38 +00:00
parent 40464f6cc6
commit 59caa68e08
5 changed files with 44 additions and 7 deletions

View File

@@ -93,6 +93,16 @@ namespace OpenSim.Region.CoreModules.World.Archiver
List<EntityBase> entities = m_scene.GetEntities();
List<SceneObjectGroup> sceneObjects = new List<SceneObjectGroup>();
/*
foreach (ILandObject lo in m_scene.LandChannel.AllParcels())
{
if (name == lo.LandData.Name)
{
// This is the parcel we want
}
}
*/
// Filter entities so that we only have scene objects.
// FIXME: Would be nicer to have this as a proper list in SceneGraph, since lots of methods
// end up having to do this