So perhaps split the list by each line (with something like List.chop, and then alternating twice with an offset by each line? Hoping there might be a simpler solution?
Also wanted to say big thanks to everyone that’s been helping me out over the past few weeks on this forum. Everyone’s been super helpful at explaining and providing tips! Really appreciate it!
@Daan : These are all very handy nodes, but I’m not sure where they fit in the graph.
I don’t want to remove or add any of the elements, so not sure where RemoveItemAtIndex or AddItemToFront/End would help either…Sorry maybe I’m missing something really obvious!
If I could filter by every other sub list I think I could solve this problem. In this example I have 4 L2 sublists. If I could grab every other sub list, that could work because then I could run the EveryNthItem separately on each sub list (although this too seems a bit overly complicated). Would a filter bool mask work?
Good News! I was able to split the lists successfully, but it feels very convoluted as method. If anyone wants to offer suggestions on how to simplify, I’d be grateful. I prefer simpler solutions to complex ones, but this seems to work! Thanks!