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

DetachFromAvatar() public method

Detach the object containing this script from the avatar it is attached to.
Nothing happens if the object is not attached.
public DetachFromAvatar ( ) : void
return void
        public void DetachFromAvatar()
        {
            Util.FireAndForget(DetachWrapper, m_host, "LSL_Api.DetachFromAvatar");
        }
LSL_Api