3 way speed switcher

I am trying to design something that causes feedback in my head - let alone network…
But I’m sure its simple to those … who will hopefully share !!
I have a pixel i want to move to value A on x axis, when it hits value A, switch to moving on y axis, when it hits value A on y axis, switch to moving on z axis.
ATM I have it driven by a switching speed chop…

Hi @jellyhorse,

you could use a Timer CHOP in serial segment mode and 3 columns that get converted to custom channels.
To make this work create a Table DAT with 5 columns and 5 rows:

id length tx ty tz
0 1 0 0 0
1 100 1 0 0
2 100 1 1 0
3 100 1 1 1

reference this DAT in the Timer CHOP’s Segments DAT parameter and set the Segment Units parameter to “Frames”.
Now also enter tx, ty, and tz into the Columns to Custom Channels parameter and hit Init on the Timer CHOP’s Timer page. Once more switch back to the Segments Page and select “Linear to Value” from the Custom Channel Interpolation menu parameter.

Now hitting start will give you three channels that interpolate from 0 to 1 and can be used to animate a point in 3D space.

Hope this helps
cheers
Markus

1 Like

thanks Marcus
I made this instead !
speedo1.tox (1.3 KB)

Hi @jellyhorse,

oh haha - ok - also good - totally misinterpreted what you wanted to do. You could also use a Fan CHOP with this using the Float parameter as an input.

cheers
Markus