This is the 11th episode of unreal engine runtime terrain generation system. Today, we are going to learn about multithreading in unreal engine with C++. Here, we will refactor the code to run the function we have written to generate terrain as an async task in a separate thread instead of the main thread. So that we can generate the terrain infinitely as the player moves around the world with a minimum interruption to the game main thread.
Project Files