What means "treat post-step particles as new"?
#1
Question 
Hello,

what means "treat post-step particles as new"?

I had the hope, the Voronoi is then not fracturing its own children if I deactivate this.

In certain workflows I'm missing the ability to exclude any particles which have been already results from processing of an operator.
So it forces to create long cascades of events just for a small variations.
Please have a look at the behaviour only if the "variation" is enabled.

Thanks for looking

       
  Reply
#2
It's a pretty niche setting that means the operator will treat any particles generated after the operator integration as new in the next frame.

One particular use case is for torn cloth. Normal frame computation goes something like this:

Code:
-operators are evaluated
-particle bind solver calculates cloth forces and cloth tearing - if cloth is torn, new particles may be generated along cloth edges
-all particles are aged 1 timestep
-repeat

In the above example, new cloth particles generated during cloth tearing will never (by default) be seen as "new" by any operator, because they're born after all operators have evaluated on a time step but also aged prior to the next step evaluation. However, if you enable "treat post-step particles as new", then those particles will be marked as "post-step new" so that when the next time step evaluates, even though their age will be greater than 0 (because they're born prior to all particles being aged 1 step), it will be seen as 0. This makes it possible to test for "new" cloth-tear particles, even though they were born at the end of the prior time step (not the current time step).
  Reply
#3
great to know the usage case, thanks
  Reply


Forum Jump: