Added Scene.ConvertLocalIDToFullID() method.

This commit is contained in:
MW
2007-08-13 20:24:37 +00:00
parent b3c6920328
commit 45fcbaae1b
4 changed files with 47 additions and 1 deletions

View File

@@ -825,5 +825,15 @@ namespace OpenSim.Region.Environment.Scenes
}
}
}
public LLUUID GetPartsFullID(uint localID)
{
SceneObjectPart part = this.GetChildPrim(localID);
if (part != null)
{
return part.UUID;
}
return null;
}
}
}