OpenSim.Region.Framework.Scenes.ScenePresence.HasScriptedAttachments C# (CSharp) 메소드

HasScriptedAttachments() 공개 메소드

public HasScriptedAttachments ( ) : bool
리턴 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