diff options
author | Melanie | 2012-05-19 13:35:21 +0100 |
---|---|---|
committer | Melanie | 2012-05-19 13:35:21 +0100 |
commit | 768e4951476db2754b612881a16b021880384d71 (patch) | |
tree | 383bd82b091b371664fdb239904c13607cfbddcd /OpenSim/Region/Framework/Interfaces | |
parent | Merge branch 'master' into careminster (diff) | |
parent | Improve locking of RegionCombinerModule.m_regions (diff) | |
download | opensim-SC_OLD-768e4951476db2754b612881a16b021880384d71.zip opensim-SC_OLD-768e4951476db2754b612881a16b021880384d71.tar.gz opensim-SC_OLD-768e4951476db2754b612881a16b021880384d71.tar.bz2 opensim-SC_OLD-768e4951476db2754b612881a16b021880384d71.tar.xz |
Merge branch 'master' into careminster
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IRegionCombinerModule.cs | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IRegionCombinerModule.cs b/OpenSim/Region/Framework/Interfaces/IRegionCombinerModule.cs index ca4ed5c..e03ac5a 100644 --- a/OpenSim/Region/Framework/Interfaces/IRegionCombinerModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IRegionCombinerModule.cs | |||
@@ -40,6 +40,20 @@ namespace OpenSim.Region.Framework.Interfaces | |||
40 | /// <summary> | 40 | /// <summary> |
41 | /// Does the given id belong to the root region of a megaregion? | 41 | /// Does the given id belong to the root region of a megaregion? |
42 | /// </summary> | 42 | /// </summary> |
43 | bool IsRootForMegaregion(UUID sceneId); | 43 | bool IsRootForMegaregion(UUID regionId); |
44 | |||
45 | /// <summary> | ||
46 | /// Gets the size of megaregion. | ||
47 | /// </summary> | ||
48 | /// <remarks> | ||
49 | /// Returns size in meters. | ||
50 | /// Do not rely on this method remaining the same - this area is actively under development. | ||
51 | /// </remarks> | ||
52 | /// <param name="sceneId"> | ||
53 | /// The id of the root region for a megaregion. | ||
54 | /// This may change in the future to allow any region id that makes up a megaregion. | ||
55 | /// Currently, will throw an exception if this does not match a root region. | ||
56 | /// </param> | ||
57 | Vector2 GetSizeOfMegaregion(UUID regionId); | ||
44 | } | 58 | } |
45 | } \ No newline at end of file | 59 | } \ No newline at end of file |