diff options
author | Justin Clark-Casey (justincc) | 2011-03-30 00:13:07 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-03-30 00:13:07 +0100 |
commit | 8b16f7d976dc60b06f6d08e9d9d853ae69de5fc9 (patch) | |
tree | 9cb7254d3731c28aca723a0c6745909319553c66 /OpenSim/Framework | |
parent | Merge branch 'primcounts' (diff) | |
download | opensim-SC_OLD-8b16f7d976dc60b06f6d08e9d9d853ae69de5fc9.zip opensim-SC_OLD-8b16f7d976dc60b06f6d08e9d9d853ae69de5fc9.tar.gz opensim-SC_OLD-8b16f7d976dc60b06f6d08e9d9d853ae69de5fc9.tar.bz2 opensim-SC_OLD-8b16f7d976dc60b06f6d08e9d9d853ae69de5fc9.tar.xz |
(re)implement selected prim count.
This does not currently count objects that are sat upon (which the viewer ui implies should be included in this count)
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IPrimCounts.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/IPrimCounts.cs b/OpenSim/Framework/IPrimCounts.cs index 8ae57fc..3e12348 100644 --- a/OpenSim/Framework/IPrimCounts.cs +++ b/OpenSim/Framework/IPrimCounts.cs | |||
@@ -45,6 +45,11 @@ namespace OpenSim.Framework | |||
45 | /// Prims owned by others (not parcel owner or parcel group). | 45 | /// Prims owned by others (not parcel owner or parcel group). |
46 | /// </summary> | 46 | /// </summary> |
47 | int Others { get; } | 47 | int Others { get; } |
48 | |||
49 | /// <summary> | ||
50 | /// Selected prims | ||
51 | /// </summary> | ||
52 | int Selected { get; } | ||
48 | 53 | ||
49 | /// <summary> | 54 | /// <summary> |
50 | /// Total prims on the parcel. | 55 | /// Total prims on the parcel. |