Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The script freezes a particle volume at the beginning of the simulation (only works with standard particle fluids only):

Code Block
languagepy
emitter = scene.get_PB_Emitter("Circle01")
particles = emitter.getParticles()

for particle in particles:
particle.freeze()

...