OpenSim.Region.ScriptEngine.Shared.Api.LSL_Api.llAttachToAvatar C# (CSharp) Method

llAttachToAvatar() public method

public llAttachToAvatar ( int attachmentPoint ) : void
attachmentPoint int
return void
        public void llAttachToAvatar(int attachmentPoint)
        {
            m_host.AddScriptLPS(1);

            if (m_item.PermsGranter != m_host.OwnerID)
                return;

            if ((m_item.PermsMask & ScriptBaseClass.PERMISSION_ATTACH) != 0)
                AttachToAvatar(attachmentPoint);
        }
LSL_Api