OpenSim.Region.ScriptEngine.Shared.Api.OSSL_Api.osForceAttachToAvatar C# (CSharp) Method

osForceAttachToAvatar() public method

public osForceAttachToAvatar ( int attachmentPoint ) : void
attachmentPoint int
return void
        public void osForceAttachToAvatar(int attachmentPoint)
        {
            CheckThreatLevel(ThreatLevel.High, "osForceAttachToAvatar");

            m_host.AddScriptLPS(1);

            InitLSL();
            ((LSL_Api)m_LSL_Api).AttachToAvatar(attachmentPoint);
        }
OSSL_Api