Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llDeleteCharacter C# (CSharp) Method

llDeleteCharacter() public method

public llDeleteCharacter ( ) : void
return void
        public void llDeleteCharacter()
        {
            IBotManager botManager = World.RequestModuleInterface<IBotManager>();
            if (botManager != null)
                botManager.RemoveCharacter(m_host.ParentEntity.UUID);
        }
LSL_Api