Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.DetachFromAvatar C# (CSharp) 메소드

DetachFromAvatar() 공개 메소드

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