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

0.7.4-post-fixes
SignpostMarv 2012-09-11 19:59:44 +01:00 committed by Justin Clark-Casey (justincc)
parent a00f745eba
commit 7db4e00b14
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);