Results 1 comments of Fabiano

solution: public void GoMessage(string text) { if (string.IsNullOrEmpty(text)) return; Thread tr = new Thread(() => { AIResponse response = apiAiUnity.apiAi.TextRequest(text); if (response.IsError) { Debug.Log("Deu erro na THREAD RESPONSE!!!!!!"); } else...