Documenting some of the events on OpenSim.Region.Framework.Scenes.EventManager (OnFrame)

connector_plugin
SignpostMarv 2012-09-11 19:59:44 +01:00 committed by Melanie
parent 8db5d79f4b
commit e3993eefa5
1 changed files with 8 additions and 0 deletions

View File

@ -47,6 +47,14 @@ namespace OpenSim.Region.Framework.Scenes
public delegate void OnFrameDelegate();
/// <summary>
/// Triggered on each sim frame.
/// </summary>
/// <remarks>
/// This gets triggered in <see cref="OpenSim.Region.Framework.Scenes.Scene.Update"/>
/// Core uses it for things like Sun, Wind & Clouds
/// The MRM module also uses it.
/// </remarks>
public event OnFrameDelegate OnFrame;
public delegate void ClientMovement(ScenePresence client);