Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have:

  • Clothes model (jackets, shirts, sweater etc. with various sizes,colors)
  • Human model with dynamic height, width, position

Need overlay a model of clothes on a human model.

Variant with a skelet and skin is not suitable, because of different clothing options and variants of the model will be a very very lot.

Need a mathematical combination of the inside of the clothes model with the surface model of the human. Can anyone help?

share|improve this question

closed as not a real question by ACB, K-ballo, Franci Penov, Will Jan 9 at 15:10

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Without knowing more specifics it will be hard to answer conclusively, but here's my guess:

Since you have

Human model with dynamic height, width, position

I assume that it is rigged and skinned and can be animated. If you have some kind of baseline for all pieces of clothing, then you can make them children of the appropriate bone in order to transform them along with the bone.

Say you have a human model that is exactly 2 units tall. You have all your clothes able to fit on this model without a problem. In-game, say you want to have an avatar that is 1.5 units tall but has really long legs. Make the pants object a child of the hips bone, the shirt object a child of the clavicle bone (or whatever). As a child object, the pieces of clothing will take on the scaling attributes of their parents.

Need a mathematical combination of the inside of the clothes model with the surface model of the human. Can anyone help?

Combining meshes at runtime is something that you shouldn't play with until you know a little more about what you're doing, but this might help: http://docs.unity3d.com/Documentation/ScriptReference/Mesh.CombineMeshes.html

Now, can you give us more info?

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.