Scene Graph Traversing Techniques
- by Bunkai.Satori
Scene Graph seems to be the most effective way of representing the game world.
The game world usually tends to be as large as the memory and device can handle. In contrast, the screen of the device captures only a fraction of the Game World/Scene Graph.
Ideally, I wish to process(update and render) only the visible game objects/nodes on…