3D Design 5-8 minutes

Cloth Simulation in Blender 5.2: From the Cloth Modifier to the Cloth Dynamics Node

Diego Cortés
Diego Cortés
Full Stack Developer & SEO Specialist
Share:
Cloth Simulation in Blender 5.2: From the Cloth Modifier to the Cloth Dynamics Node

Blender 5.2 LTS ships cloth physics inside Geometry Nodes with the experimental Cloth Dynamics node, but the classic Cloth modifier remains the stable path: this guide covers both ways to simulate fabric — pinning, sewing, pressure, and collisions — and when to pick each one.

Two Ways to Simulate Fabric in Blender 5.2

Blender 5.2 gives you two routes for cloth simulation, and it pays to understand the difference before choosing. The first is the Cloth modifier, available for years, stable, and used in professional productions of every kind. The second is the Cloth Dynamics node, a node-powered cloth physics system that the development team presented as the first step of a new hair and cloth dynamics engine, shipped in 5.2 with an experimental label.

The Cloth Modifier: Stable and Production-Ready

The Cloth modifier is the workhorse of clothing and fabric simulation in Blender. It works on any mesh, is configured from the physics panel, and combines vertex groups, collisions, sewing, and air pressure. It is the recommended option when deadlines are involved: the official documentation keeps it as the standard workflow, the whole community knows it, and the settings you learn today will keep working in future releases.

The Cloth Dynamics Node: New Node-Based Physics (Experimental)

With the 5.2 LTS, published on July 14, 2026, Blender includes the first version of a hair and cloth dynamics system powered by Geometry Nodes. It ships as a node group asset and simulates fabric inside a simulation zone, with the advantage that every behavior can be wired to fields and nodes. The official documentation warns about it without sugarcoating: it is experimental and may change in future versions, so building an entire production on top of it is not wise yet.

The Classic Workflow: Cloth Modifier Step by Step

The starting point is simple: select the mesh you want to turn into fabric and add the Cloth modifier from the physics panel (Physics > Cloth). The default values already produce a reasonable simulation, but believable results depend on three decisions: mesh density, modifier order, and collision settings.

Preparing the Mesh: Density and Subdivision

Simulation needs geometry to fold convincingly: a flag with 20 by 10 vertices barely wrinkles, while more density brings out the folds. More polygons mean more realism, but computation time grows at the same rate, so look for a balance based on the object and your machine.

Simulate Low-Poly, Then Smooth with a Subdivision Surface

The trick recommended by the manual is to simulate on the low-poly mesh and add a Subdivision Surface modifier after the Cloth in the stack. That way the simulation runs on few vertices, fast, and the final mesh comes out smooth and detailed. Order matters: the Subdivision Surface must come after Cloth so the smoothing does not increase the simulation cost.

Pinning: Attaching Fabric with Vertex Groups

Pinning fixes parts of the fabric to their rest position: it is what makes a flag wave attached to its pole or a curtain hang from the rod. Without pinning, the fabric would simply fall to the ground.

Creating the Vertex Group and Assigning Fixed Vertices

The process is straightforward: in Edit Mode select the vertices you want to anchor (for example, the left edge of the flag), create a new vertex group in Object Properties, and press Assign. Then, in the Shape panel of the Cloth modifier, choose that group as the Pin Group. The vertices in the group stay locked to their rest position while the rest of the mesh simulates around them.

Weight Painting: Weight Controls Pin Strength

The weight of each vertex determines the pinning strength: a weight of 1 keeps the vertex fully anchored, and intermediate values let the fabric drift partially, useful for areas that must resist but give a little, like a shirt collar. With Weight Paint you paint that gradient directly on the mesh.

Collisions: Objects That Touch the Cloth

For the fabric to interact with the world around it, the objects that should touch it need the Collision modifier. Without it, the fabric passes through the table, the floor, or the character as if they did not exist. Adding the modifier to the receiving object is enough in most cases; for highly detailed surfaces you can adjust the collision distance inside the modifier itself.

The Collision Modifier and Quality Steps

When collisions fail or the fabric behaves erratically, the first parameter to raise is Quality Steps in the Cloth modifier. It controls how many sub-steps the simulation computes per frame: going from 5 to 10 or more improves collision detection with thin objects or fast motion, at the cost of computation time. Raise it only where you need it, and test with the flag before applying it to the whole scene.

Sewing: Stitching Fabric Pieces Together

Sewing is the method for joining fabric pieces: the modifier stitches vertices together as if they had thread, so the edges of two meshes tend to come together during the simulation. It is the foundation for garments, where several panels must end up as a single piece of clothing. It is controlled by the sewing force and the maximum stitch distance; the higher the force, the sooner the edges meet at the start of the simulation.

Pressure: Balloons and Inflatable Objects

The Pressure parameter of the Cloth modifier simulates soft-shell objects filled with air, such as balloons, balls, or cushions. With pressure above zero, the mesh inflates from within and recovers its volume when deformed, producing that characteristic elastic bounce. Combine it with pinning to tie the balloon to a string or keep the neck closed, and you will notice the difference immediately.

Clothing on Characters: Cloth on Armature

Simulating clothing on an animated character is one of the most common uses of cloth simulation, and one of the most confusing because of modifier order. The workflow relies on two pieces: the Armature that deforms the body and the vertex group that defines which part of the mesh is fabric.

Modifier Order and the Armature Vertex Group

In the modifier stack, the Armature goes on top and the Cloth below it. That way the skeleton deforms the mesh first and the simulation works on the already deformed mesh, so the shirt follows the character and also moves like fabric. In the Shape panel of the Cloth modifier, select the armature vertex group so the simulation respects the skeleton deformation instead of fighting it.

The Cloth Dynamics Node in Geometry Nodes (5.2)

The highlight of 5.2 is the Cloth Dynamics node, the first public piece of Blender's new node-powered physics system. You add it inside a simulation zone and it works as a connectable cloth solver: instead of editing the modifier stack, you describe the fabric behavior with nodes and fields.

Node Inputs: Geometry, Pin Group, and Invert Pin Group

The Geometry input is used as the rest shape: from it, the node generates the internal stretching and bending forces. Pin Group accepts a weight field: a value of 1 anchors the vertex to its rest position, while lower values produce soft pinning that allows deviation. Invert Pin Group flips the selection (1 minus the pin group) to pin everything except a specific area.

Dynamic Pinning, Custom Forces, and Experimental Limits

Because it lives inside Geometry Nodes, the node can be connected to any field, which opens use cases the classic modifier does not allow. The community is already sharing examples with dynamic pinning based on geometry proximity (the fabric pins itself when an object gets close), custom forces, fabric tearing, and procedural motion graphics. The flip side is the same as before: the documentation marks it as experimental and subject to change, so for stable production work the Cloth modifier remains the safer bet.

Flag, T-Shirt, and Balloon: The Full Exercise

To put it all together, build the three exercises from this tutorial. The flag: a plane of about 40 by 20 vertices, a pin group on the left edge with weight 1, wind from Force Fields, and Quality Steps at 8 so the wrinkles flow smoothly. The T-shirt: duplicate the torso mesh, add Armature and Cloth with the armature vertex group in Shape, and watch the garment follow the character while folding on its own. The balloon: a low-poly sphere with Pressure at 2, a pin group at the neck, and a string with cloth physics to finish it. Compare the result before and after each tweak: you will quickly see which parameter fixes each problem.

Conclusion

Blender 5.2 gives you two legitimate ways to simulate fabric: the Cloth modifier, stable and production-ready, and the Cloth Dynamics node, the bet on node-based physics that arrived with the July 2026 LTS. Master the classic workflow first with pinning, sewing, pressure, and collisions; once you feel comfortable, experiment with the node in Geometry Nodes and follow its evolution in upcoming releases. If you enjoyed this guide, keep reading the blog for more Blender, physics, and simulation tutorials.

Categories