Tagged Questions
2
votes
1answer
259 views
Updating scene graph in multithreaded game
In a game with a render thread and a game logic thread the game logic thread needs to update the scene graph used by the render thread. I've read about ideas such as a queue of updates.
Can someone ...
9
votes
1answer
1k views
Scene Graph in Separate Thread
I develop my own game engine for fun (but not profit). I have rendering in one thread and my scene graph updates (velocity, etc.) in another. When it's time to render, the render thread adds the ...