Make cloth?

Posted By: Twink

Make cloth? - 02/25/08 19:14

Hi i'm new here, and this is my first post. I have some questions about making clothing for characters (although I don't have 3d Game Studio A7 or any other version yet):

How could I approach making dynamic clothing for my characters, for maybe a cape or something? How can I make clothing for my characters (I mean, should I use a 3d modeler like Truespace, or Maya, or can it be done in 3d Game Studio A7)?

Anyone know of any 'noobie' clothing tutorials (using 3dGS A7, Maya Unlimited 8.0, or Truespace 7.5?
Posted By: DLively

Re: Make cloth? - 02/26/08 20:54

clothing can be made with MED, a program that comes with 3dgs. You would have to shape it to fit your character, and then using script, make it move with the player.

You should try learning something easier, considering you dont have 3dgs yet, this is going to be a very tough goal to reach.
Posted By: Havoc22

Re: Make cloth? - 02/26/08 21:18

This is something I've been pretty interested in as well. Something similar to nocturne where the vertices of the end of a coat seem to form to the shape of the player but are connected at a the midpoint of the player model. It would be cool to see something similar implemented in gamestudio since I've not seen it done yet.
Posted By: Twink

Re: Make cloth? - 02/26/08 22:21

I figured out how to make cloth in TrueSpace 7.5! Just follow this tutorial I made if you have TS7.5, and want to make clothes for your characters.

1.)Make a character with the body separate from the head.

2.) Right mouse click on the body mesh, select the faces of the torso and arms, using the 'select using rectangle' tool.

3.) Click the 'copy' tool, then click the 'separate' tool. Move the copy and the separate torso and arms to the position under the head if they were not there already.

4.) Scale the torso and arms (the shirt) to fit your model, just until it covers the torso and arms of your character.

5.) In the Material Editor, you can now texture the shirt, or UV map it.

You can use the same technique for pants.
Posted By: not_me

Re: Make cloth? - 02/26/08 22:47

you could texture the clothes onto the model.(bad way) or you could make a shell, in a sense, that fits to the players body. and just make the shell in the shape of a shirt or pants or armor. unless your talking about clothes that are wrinkled and move realisticly then your talking about softbodies and i dont think 3dgs can do that. i kno blender and 3ds max can.
Posted By: Nems

Re: Make cloth? - 02/26/08 23:27

In MED, just animate the clothing along with the character for flowing movement.
The same is done in any other modelling App.

If dynamic flow is needed then some members are really versed in that approach where vertices are moved by script to achieve the same effects.

This was demonstrated once with terrains but I dont recall which thread or how long ago that was or by whom
Posted By: jonkuhl

Re: Make cloth? - 02/27/08 05:48

Ever play WoW?

Well, if you look real closely at the models, the hair, shoulder pads, gauntlets and boots are all separate models from the torso. Even the legs are separate so they can be removed if the character is wearing a robe or a kilt. However shirts and pants are simply texture swaps.

How it works is relatively simple. Lets take gloves for example. The way I would have made gloves is after I made my torso, I'd build the hands separately in the same file. I'd then position the hands on the wrists of the torso, do the animations and save the file. Then I delete the torso and I save the hands model. Then I open the original file, delete the hands and save the torso model.

Then in SED I simply apply a script to the hands that makes them follow the torso.

Code:
action guantlets
{
while(torso)
{
my.x = torso.x;
my.y = torso.y;
my.z = torso.z;
wait(1);
}
}


The reason this works is that the guantlets were made with the same origin as the torso.

This way gauntlets can be made.

Now following this method, a character with equipable gear, like in WoW can be designed.
Posted By: RaceBert

Re: Make cloth? - 02/28/08 22:49

You can not make cloth like with Poser 7 or DAZ3D. You have to animate them with you Character animation
© 2024 lite-C Forums