Aurora.ScriptEngine.AuroraDotNetEngine.APIs.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);
        }
        private void DetachWrapper(object o)
LSL_Api