Make SceneManager.OnRegionsReadyStatusChange event available.

This is fired when all regions are ready or when at least one region becomes not ready.
Recently added EventManager.OnRegionReady becomes OnRegionReadyStatusChange to match OnLoginsEnabledStatusChange
This commit is contained in:
Justin Clark-Casey (justincc)
2012-07-25 21:00:59 +01:00
parent 3cf8edfd68
commit 31304c222d
8 changed files with 87 additions and 18 deletions

View File

@@ -71,6 +71,14 @@ namespace OpenSim.Framework
/// </summary>
bool LoginsEnabled { get; set; }
/// <summary>
/// Is this region ready for use?
/// </summary>
/// <remarks>
/// This does not mean that logins are enabled, merely that they can be.
/// </remarks>
bool Ready { get; set; }
float TimeDilation { get; }
bool AllowScriptCrossings { get; }