mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
Add the RegionLoaded(Scene) API to the new region module interface to allow
region modules to use another region module's interfaces and events in a scene context
This commit is contained in:
@@ -71,6 +71,19 @@ namespace OpenSim.Region.Framework.Interfaces
|
||||
/// A <see cref="Scene"/>
|
||||
/// </param>
|
||||
void RemoveRegion(Scene scene);
|
||||
|
||||
/// <summary>
|
||||
/// This will be called once for every scene loaded. In a shared module
|
||||
/// this will be multiple times in one instance, while a nonshared
|
||||
/// module instance will only be called once.
|
||||
/// This method is called after AddRegion has been called in all
|
||||
/// modules for that scene, providing an opportunity to request
|
||||
/// another module's interface, or hook an event from another module.
|
||||
/// </summary>
|
||||
/// <param name="scene">
|
||||
/// A <see cref="Scene"/>
|
||||
/// </param>
|
||||
void RegionLoaded(Scene scene);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user