VeritasCarpeDiem / iEduFin

An educational finance game developed in C# using Unity
MIT License
1 stars 0 forks source link

fixed main thread bug #1

Closed VeritasCarpeDiem closed 2 years ago

VeritasCarpeDiem commented 2 years ago

Issue: Forgot to include UnityMainThreadDispatcher into the "sign in" scene . Basically, the HTTP ListenerCallback function was throwing an exception because the the login authentication ran on a 2nd thread but it had to queue the code the execute on the main thread, except that it was missing the UnityMainThreadDispatcher object