Hey everyone! I’d like to use a character model using the single-mesh method which I modelled & animated. However, a question came to me by surprise: is it possible to have clothing / armour animate along with the mesh (so that it always covers everything)? And if so, how can I do this without having to combine the armour with the character mesh? I want the armour & clothing to be very customizable, so combining it is no option.
(Possible) Issues
My biggest concern is: even with attachments and such installed, I fear the body might just glitch through armour & clothing at certain spots. So I started thinking, would it be possible to somehow let the gear animate along with the character? Or is there another way to prevent body parts from sticking out?
Maybe one day Roblox can incorporate cloth physics and this wouldn’t be a problem, but as of now, it’s really hard to make this sort of mechanic(the only way I can think on if raycasting, but there might be other ways).
Some basic verlet code should do the trick. The only issue is that making it detailed and performant is practically impossible as it is. It is definitely possible for clothes such as capes or coats, but it would be limited to ~6-9 points per cloth. You’d also have to get greedy with collision surfaces, so don’t even bother with proper limb collisions.
Even if Roblox were to add an actual Cloth instance, I’d imagine it would be optimized for stuff like swinging flags instead of accurate character related stuff, so you should expect a lot of clipping, twitching and generally inaccurate collisions (floating above surface).
Weight-painting is a term used in animation to indicate which sections of topology move with the specified bone.
The more weight it’s got, the stronger the affection is.
There are dozens of tutorials out there who are probably able to explain it better than I do.
Perhaps this one might help:
Hey its me again, I need to know how exactly you attach all the clothing parts since in our game the player should be able to switch them out (within the game).
From what I know I should export the piece of clothing with the whole rig, and just attach it onto the character using the plugin Roblox released.
Is this correct? I need to be able to switch between many male clothing parts and they should move along with the character animations.