mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 04:05:42 +08:00
* Added support for delinking individual prim from a linkset.
This commit is contained in:
@@ -1218,6 +1218,13 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
part.UpdateExtraParam(type, inUse, data);
|
||||
}
|
||||
}
|
||||
public SceneObjectPart[] GetParts()
|
||||
{
|
||||
int numParts = Children.Count;
|
||||
SceneObjectPart[] partArray = new SceneObjectPart[numParts];
|
||||
Children.Values.CopyTo(partArray, 0);
|
||||
return partArray;
|
||||
}
|
||||
public bool GetLocked()
|
||||
{
|
||||
return m_locked;
|
||||
|
||||
Reference in New Issue
Block a user