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

SendFullUpdate() protected method

Send a full update to the client for the given part
protected SendFullUpdate ( IClientAPI remoteClient, uint clientFlags ) : void
remoteClient IClientAPI
clientFlags uint
return void
        protected internal void SendFullUpdate(IClientAPI remoteClient, uint clientFlags)
        {
//            m_log.DebugFormat(
//                "[SOG]: Sendinging part full update to {0} for {1} {2}", remoteClient.Name, part.Name, part.LocalId);
            
            if (IsRoot)
            {
                if (IsAttachment)
                {
                    SendFullUpdateToClient(remoteClient, AttachedPos, clientFlags);
                }
                else
                {
                    SendFullUpdateToClient(remoteClient, AbsolutePosition, clientFlags);
                }
            }
            else
            {
                SendFullUpdateToClient(remoteClient, clientFlags);
            }
        }
SceneObjectPart