Added a new method SendGroupRootUpdate to start addressing mantis #3019. ll functions have not been changed.

0.6.3-post-fixes
diva 2009-01-30 23:23:02 +00:00
parent e233aad098
commit 36221a2c19
1 changed files with 14 additions and 0 deletions

View File

@ -1827,6 +1827,20 @@ namespace OpenSim.Region.Environment.Scenes
}
}
/// <summary>
/// Immediately send an update for this scene object's root prim only.
/// This is for updates regarding the object as a whole, and none of its parts in particular.
/// Note: this may not be cused by opensim (it probably should) but it's used by
/// external modules.
/// </summary>
public void SendGroupRootUpdate()
{
if (IsDeleted)
return;
RootPart.SendFullUpdateToAllClients();
}
public void QueueForUpdateCheck()
{
if (m_scene == null) // Need to check here as it's null during object creation