Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llCreateCharacter C# (CSharp) Метод

llCreateCharacter() публичный Метод

public llCreateCharacter ( Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.list options ) : void
options Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.list
Результат void
        public void llCreateCharacter(LSL_List options)
        {
            IBotManager botManager = World.RequestModuleInterface<IBotManager>();
            if (botManager != null)
            {
                botManager.CreateCharacter(m_host.ParentEntity.UUID, World);
                llUpdateCharacter(options);
            }
        }
LSL_Api