Help Obi cloth vs Marvelous Designer - Printable Version +- Obi Official Forum (https://obi.virtualmethodstudio.com/forum) +-- Forum: Obi Users Category (https://obi.virtualmethodstudio.com/forum/forum-1.html) +--- Forum: Obi Cloth (https://obi.virtualmethodstudio.com/forum/forum-2.html) +--- Thread: Help Obi cloth vs Marvelous Designer (/thread-392.html) |
Obi cloth vs Marvelous Designer - lqm231 - 22-02-2018 Hi, I have a project in university that allow user to change cloth (T-Shirt, Coat,... cloth for upper body), so I need the cloth simulation effect like Marvelous Designer does. Can the obi cloth do that?. Sorry for asking like that, because I'm very new to Unity or cloth simulation. So I would like to ask before buying it. By the way, I would like to know if I can add the obi cloth at the runtime, due to the cloth is loaded in runtime? I have try with unity cloth feature. But it doesn't work as my expectation Here what I try Before using unity-cloth [attachment=92] After using unity-cloth [attachment=93] You can see that the cloth is stretching to much. I try to decrease the max-distance to 0.1, but the cloth is simulated too bad just like before applying the unit-cloth effect. Thank for your support, Minh RE: Is it posisble to use Obi cloth to simulate cloth like Marvelous Designer? - josemendez - 22-02-2018 (22-02-2018, 07:30 AM)lqm231 Wrote: Hi, I have a project in university that allow user to change cloth (T-Shirt, Coat,... cloth for upper body), so I need the cloth simulation effect like Marvelous Designer does. Hi Minh, To reduce stretching, you need to increase the amount of distance constraints iterations (in the ObiSolver component, the default is 3 but you can use 10 or more), or the amount of substeps if you're using version 3.3. See: http://obi.virtualmethodstudio.com/tutorials/convergence.html Unfortunately you will not be able to achieve the same quality as Marvellous Designer. Performing such simulation in realtime in the CPU is impossible, even for MD (the video you sent is an offline sim/render, meaning that it took a long time to calculate it). cheers, RE: Is it posisble to use Obi cloth to simulate cloth like Marvelous Designer? - lqm231 - 26-02-2018 (22-02-2018, 08:57 AM)josemendez Wrote: Hi Minh, Thank Josemendez. I finally decided to buy Obi Cloth. I have updated the sample Character Cloth so that the Trenchcoat's arm can simulate cloth effect. Unfortunately, the coat's arm doesn't work like coat's tail. Could you please help me? Step to re-produce: 1. Add Capsule Collider, Obi Collider to joints: 15, 7, 6, 5 (Don't know if the collider is necessary for joints 7, 6, 5. I just need the cloth effect for arms - joint15) 2. Update Layer of these joints to Ignore Raycast. 3. Add Arm's Particles to body_bashmesh1 Code: Particle editor [attachment=94] [attachment=95] [attachment=96] Thanks, Minh RE: Is it posisble to use Obi cloth to simulate cloth like Marvelous Designer? - josemendez - 26-02-2018 (26-02-2018, 06:44 PM)lqm231 Wrote: Thank Josemendez. For things like sleeves and other cloth very close to the body, you should use skin constraints instead of colliders (see http://obi.virtualmethodstudio.com/tutorials/skinconstraints.html). Arm movement is too fast at the beginning of the animation and it will tunnel trough the cloth. If you disable the Animator component in the character, you will see that the sleeve does collide. However when using animation, the first frame of animation will "teleport" the arm outside of the sleeve, and it will stay that way throughout the animation. This is why character clothing in games cannot be done using colliders alone. Skin constraints (Obi), Backstop values (APEX Cloth) and similar solutions exist to solve this exact problem. cheers, |