First off. I'm using maya 8.5.
I've seen a few people in various threads now mentioning optimizing the polystrips on a model and I understand the reason why you'd want to do that. What I don't know is *how to do it. I'm pretty much clueless where that is concerned. Do you just rebuild the model face by face? are there tools that help with that?
rube
Replies
If I'm right, then it means having a row of quads all triangulated in the same direction, so their vertex winding order is always the same. I'm not sure how much of a benefit this is, I seem to remember reading some engines/platforms handle this much better than others.
Might be worth Googling up more info on "tri-stripping".
Here's a post from JamieF over on CGChat that might explain it better than I did:
http://www.cgchat.com/forum/showpost.php?p=124544&postcount=9
StJoris is part-way there, UVs and Smoothing Groups affect tri-stripping, because if there is a UV seam over the middle of a consistent tri-strip, it will have to be split up anyway.
Eric Chadwick has a nice resource from a Game Developer article by Guillaume Provost concerning UV and smoothing breaks: http://www.ericchadwick.com/examples/provost/byf2.html
What does help is reducing seams - all types, as much as possible. Less UV borders, less hard edges, even mirrored UV borders. This causes extra verts (as Per mentioned) to be created, which increases the cost of drawing the model. Programmers really would like to give you a vertex count instead of a poly count for a budget for your models, but that's damn hard to follow! It's easy to build a 8k triangle model, but very hard to build a 4k vertex model, when you don't know how many there will be after processing. Usually we just assume a constant vert/tri ratio and set our budgets based on that.
It is too hard for an artist (human being) to predict all the "vertex splits" and still manage to make a optimal mesh, leave that to algorithms, as whargoul suggested.
Make it pretty stay within "limits" (but dont take limits too serious, there are so many "ifs" and "whens" concerning performant rendering that hard limits dont do justice, but serve as guidelines)
strips internally can still help to keep index uploads fast and make use of vertex caches, then again similar can be achieved without strips, too. But nothing an artist should really worry about.
the one things you can do to "help" is trying to achieve large UV charts (ie less vertex splits) and similar for smoothing groups (or dont use any at all), anything beyond is too "much" to be sane