Trying to think of an elegant solution for this. Each frame, I only want to pick one family member (it can be random or sequential, doesn't matter), but I want to pick them all once before I start again fresh. I want this to be as fast as possible. So the simplest way I guess would be to somehow cycle through them, but I'm not aware of a familymember[index] type solution. Or otherwise, set a bool as false, pick one with a false, set it to true until all are true and then refresh. But that sounds slow.
So I'm looking for.....
Every Tick - Pick a random family member that hasn't been picked. Work with that instance.
When all have been picked once, refresh and start again.
I suspect that I'm missing something obvious or built in, but I've been away from C2 for a while and I can't think of anything.