Hi, i need to know if normally unreal engine will run two functions of the same class at the same time if one is activated while the other one is still running, or will it execute one and then the other?
Hi, AFAIK by default UE will run all the code you write in one process (the GameThread), so one after another.
I did some tests and it actually runs one after another, thanks.