How does UE4’s threaded rendering model work when packaged for HTML5?
Given that the Emscripten compiler converts all game code to JavaScript (a single-threaded language), I would guess that GameThread and RenderThread operations proceed sequentially? (GameFrame0 → RenderFrame0 → GameFrame1 → …).