mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 01:35:46 +08:00
New command: show pending-objects
This commit is contained in:
@@ -36,5 +36,6 @@ namespace OpenSim.Region.Framework.Interfaces
|
||||
void Close();
|
||||
void QueuePartForUpdate(SceneObjectPart part);
|
||||
void SendPrimUpdates();
|
||||
int GetPendingObjectsCount();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -205,6 +205,14 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
Reset();
|
||||
}
|
||||
|
||||
public int GetPendingObjectsCount()
|
||||
{
|
||||
if (m_pendingObjects != null)
|
||||
return m_pendingObjects.Count;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public class ScenePartUpdate
|
||||
{
|
||||
public UUID FullID;
|
||||
|
||||
Reference in New Issue
Block a user