OpenSim.Region.Framework.Scenes.SceneObjectPart.AddFullUpdateToAllAvatars C# (CSharp) Method

AddFullUpdateToAllAvatars() public method

Tell all scene presences that they should send updates for this part to their clients
public AddFullUpdateToAllAvatars ( ) : void
return void
        public void AddFullUpdateToAllAvatars()
        {
            m_parentGroup.Scene.ForEachScenePresence(delegate(ScenePresence avatar)
            {
                AddFullUpdateToAvatar(avatar);
            });
        }
SceneObjectPart