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

0.7.4-extended
SignpostMarv 2012-09-11 19:59:44 +01:00 committed by Justin Clark-Casey (justincc)
parent f8612b0d1b
commit 97c56adb9d
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);