[CHOPs] foreach node - iterate over single channel multiple times?

   3731   1   1
User Avatar
Member
13 posts
Joined: Nov. 2016
Offline
I want to iterate over a single channel multiple times and perform some math on it. CHOPs foreach doesn't have an easily controllable ‘count’ at the top level like the SOPs foreach.

I could not find helpful examples on CHOPs foreach, so if you can link me something close to what I'm after that would also help. Thanks
User Avatar
Member
2035 posts
Joined: Sept. 2015
Offline
Use a channel wrangle.

int Count;

for(Count = 0; Count < 5; Count++)
{
@V += 1;
}
  • Quick Links