diff options
author | Diva Canto | 2011-02-06 19:39:29 -0800 |
---|---|---|
committer | Diva Canto | 2011-02-06 19:39:29 -0800 |
commit | 98ea78fc77b3dd6da185d71dfab402a0ef8780d6 (patch) | |
tree | f73f170ad6f10e1e8d79aa4572fac11780d6a6cb /OpenSim/Region/Framework/Scenes | |
parent | Better output for show neighbours (diff) | |
download | opensim-SC_OLD-98ea78fc77b3dd6da185d71dfab402a0ef8780d6.zip opensim-SC_OLD-98ea78fc77b3dd6da185d71dfab402a0ef8780d6.tar.gz opensim-SC_OLD-98ea78fc77b3dd6da185d71dfab402a0ef8780d6.tar.bz2 opensim-SC_OLD-98ea78fc77b3dd6da185d71dfab402a0ef8780d6.tar.xz |
New command: show pending-objects
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneViewer.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneViewer.cs b/OpenSim/Region/Framework/Scenes/SceneViewer.cs index b44a010..7c067ca 100644 --- a/OpenSim/Region/Framework/Scenes/SceneViewer.cs +++ b/OpenSim/Region/Framework/Scenes/SceneViewer.cs | |||
@@ -205,6 +205,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
205 | Reset(); | 205 | Reset(); |
206 | } | 206 | } |
207 | 207 | ||
208 | public int GetPendingObjectsCount() | ||
209 | { | ||
210 | if (m_pendingObjects != null) | ||
211 | return m_pendingObjects.Count; | ||
212 | |||
213 | return 0; | ||
214 | } | ||
215 | |||
208 | public class ScenePartUpdate | 216 | public class ScenePartUpdate |
209 | { | 217 | { |
210 | public UUID FullID; | 218 | public UUID FullID; |