
These are 3D art asset modeling, rigging, uv-mapping and texturing tips. And not only for low-poly though it is where they are needed the most. See also other tip collections, the first and second set.
Minimize number of Draw Calls the Asset generates
Draw Calls are for game engine the number of separate objects, materials and textures that are loaded. The less draw calls the better the game can run. Here are some ways to lower the number:

- Have each character as one single mesh. Characters that are made from pieces in-game cost in draw calls.
- Combine separate static meshes to one. If you can have a collection of objects as one object, one file(the meshes can be unconnected), it is better than as several files. But don’t combine a whole village to one object as the whole thing would get loaded to memory even though you may not need it. This trick is best for moderate collection of objects, say all items inside a shop interior.
- Use only one material and texture per object. Or even..
- Have several objects all use same texture and material. This means each has the same uv-map but uses only a portion of the whole – uv-map collects all textures together. See picture. Even though not shown in picture(for clarity) the sections different objects use can well overlap.
[divider_line]
Optimize character rig, use 2 rigs – one for animation and one for export
The less bones your character has the lighter it is to run. And less resources used for one character means more to use elsewhere – maybe even allowing more characters.
But very few bones makes animating difficult and prevents many motions. Of course we rather animate with the optimum amount – and with control objects as well to make work easier. Sure you can have control object in your game rig and just make sure not to export them to game, but having bones in a rig that you don’t export, like between one bone and another? That is asking for trouble.
Solution is two rigs, one for animation and one for exporting to game. Game-rig is linked to follow animation rig – you animate only with animation-rig and export only with the game-rig.
[clearboth]

[clearboth]
[clearboth]
That was the 3rd set of little tips for improving 3D (game) art assets. Cheers!
Share the article With

By Luciano January 6, 2013 - 11:57 pm
It’s been a while since I checked your page, and was happy to see this post. Quite useful, thanks!
By niko January 7, 2013 - 9:16 am
Good to hear. Thanks Luciano.
By 3D Modeling for Film and Game - Gnomon Workshop - VFX and Game Designers | The Gnomon Workshop News March 19, 2013 - 5:30 pm
[...] have a limitation to the amount of polygons that can be processed without compromising game play. CG Mascot has a good write up with tips for learning how to be economical with your [...]