Philipp Pavlov posts a look at how you can select every nth Element in a  Cloner

In this short video i will show you how to select each nth element in cloner and make smooth interpolation between themPhilipp Pavlov

Starting with a Cloner in the scene and using the formula effector Philipp shows how to create the setup using two formulas, one that can have falloff, and one that has no falloff.

Check out Philipp Pavlov’s site for more information on creating a set up that can select every nth cloner object in Cinema 4D.

 

Without falloff:
if( mod(id;f) == 0; 1; 0)

With falloff:
if( mod(id;f) == 0; 1; if( mod(id;f) < (f/2); f/2-mod(id;f) ; mod(id;f/2) )/(f/2) )