Hi!
auto MyLambda = { … };
AsyncTask(ENamedThreads::GameThread, MyLambda)
I have a question, when is a call to AsyncTask(ENamedThreads::GameThread, MyLambda) scheduled? E.g., if I call this from my non-game thread, when will the lambda be executed? Is it at some specific time, or can the game tick be interrupted and executing my lambda in the middle of a level tick? Some more information about this would be really helpful!
Thanks in advance!