OpenSim.Region.Framework.Scenes.ScenePresence.HasScriptedAttachments C# (CSharp) Method

HasScriptedAttachments() public method

public HasScriptedAttachments ( ) : bool
return bool
        public bool HasScriptedAttachments()
        {
            lock (m_attachments)
            {
                foreach (SceneObjectGroup gobj in m_attachments)
                {
                    if (gobj != null)
                    {
                        if (gobj.RootPart.Inventory.ContainsScripts())
                            return true;
                    }
                }
            }
            return false;
        }
ScenePresence