Skip to main content

All Questions

0 votes
0 answers
16 views

Continue baking after changing modifier and adding a new object

blenderers! I want to write a Python script to simulate two clothes being dropped on top of a cube. Here are the steps that I want to take: I want to drop the first cloth and simulate the physics for ...
Aslan Noorghasemi's user avatar
4 votes
1 answer
110 views

How to get updated mesh locations after object collisions?

I am very new to blender. I have a scene like this, The top plane is a cloth, the two cylinders and rectangle are collision objects. I click play on the timeline and get this after a few seconds, I ...
AskedSuperior's user avatar
5 votes
3 answers
1k views

Pin cloth vertices at a specific set of frames, and un-pin otherwise (in python)

I am using Blender 2.82a and am trying to pin cloth vertices only at a specific set of frames. The broader context is to simulate actions on a cloth, where each action is parameterized by a cloth and ...
ComputerScientist's user avatar
1 vote
2 answers
3k views

Understanding what "dependency cycle" means, why it happens, and if it is a cause of concern [MWE provided with cloth]

I am using Blender 2.82a. My code seems to be working but creates "Dependency Cycle" messages from the command line, so I hope to understand why they are happening and if they are a cause of concern. ...
ComputerScientist's user avatar
2 votes
1 answer
368 views

Change cloth end_frame in python script

I am trying to run a cloth simulation in blender using python scripting and despite setting the frame_end of the scene to the desired number of frames (...
scapiskipi's user avatar
0 votes
1 answer
314 views

Save mesh via python scripting at a given frame

I am trying to run a cloth simulator (using the Blender Render) and save the garments meshes at a given frame via python scripting. I have the code that would do that in the graphical interface (...
scapiskipi's user avatar
0 votes
2 answers
594 views

How to avoid doing physics simulation and get the final rendering quickly?

I'm super new to Blender and I hope I'm not offending others asking this. I am baking physics using the method described here and then do the rendering using the code below. However, it takes a while ...
Amir's user avatar
  • 3,062
1 vote
0 answers
496 views

Change the start frame and end frame of a bake in Blender using script [duplicate]

I am doing a cloth simulation. After baking I realize that the required simulation comes to an end in the 40th frame itself but it keeps simulating till the 250th frame. Now I am able to change the ...
Sum-Al's user avatar
  • 567
5 votes
1 answer
760 views

Dynamically pin cloth when animating

The way it works now is, I assign some initial pinned vertices to the cloth and model the simulation. However, I'd like to unpin some vertices and pin some new vertices in between the simulation. I ...
sanjeev mk's user avatar