Hello everyone,
I am trying to achieve smooth level streaming. I am streaming a single level that contains a static mesh that has 600K vertices. I know it is not a real case, but I am wondering if I am not able to stream heavy static meshes ? As far as I understand of the process loading assets are not the problem. They are using FAsyncLoadingThread and not blocking the GameThread which is good. But the problem starts after the ProcessAsyncLoading function. It calls ENQUEUE_RENDER_COMMAND and RenderThread copies buffers to GPU Memory(VRAM) from RAM. This process can not be limited therefore it blocks RenderThread and GameThread waits for RenderThread and that causes hitches.
Do you have any tips to avoid this? I would like to stream levels during cutscene and cutscene are plays in game and hitches effects cutscene performance.
How can I solve those issues?