04-04-2019, 08:19 AM
Hmm, that's a tricky one...if your flows have exactly the same number of particles and you don't plan to delete any of them (so the offset between their indices will always stay the same), you could accomplish that pretty simply with a script operator.
Within the particle loop you'd just put this line:
Within the particle loop you'd just put this line:
Code:
int offset = 5000;
tf.SetCustomVector(sInx, "channelName", tf.GetCustomVector(sInx + offset, "channelName"));