How does making a 3D model on my computer put so much strain on it, but rendering it in real time alongside a hundred copies of it in a video game work perfectly fine? Moreover, how does it take so long to render something that was already being shown and worked on?

640 views

Hope this doesn’t count as a ‘loaded question’.

In: Technology

3 Answers

Anonymous 0 Comments

There are two factors at play here.

First, and most importantly, model editing software is designed to make editing the model easy, and not to render hundreds of things at once. As such it may use more complex/slower data-structures and algorithms to store and display the model, if it helps with the editing.

The second thing is that games often use lower quality assets (for performance reasons). It is quite common to edit a model in super high quality (simply because it’s easier that way) and then create a much faster version to use in game. The in-game version could for example use normal maps instead of polygons for small surface details, compressed textures and coordinates as well as baked AO or lighting.

You are viewing 1 out of 3 answers, click here to view all answers.