Using delays does not work because calling a delay multiple times has no effect. I also tried using a custom delay-for loop but it really messes with the max loop index. (Max index will sometimes be ignored).
So how do i do a working delay node inside a nested for-loop?
If i just use my custom delay-for loop (that works for a single for-loop) it will run out out the last index for some reason.
Wanted output:
0 0
0 1
1 0
1 1
The output i get with a delay in the for loop (even if i set the delay to 0):
0 0
1 1
1 0
2 0
3 1
My macro (like all the tutorials out there suggest):
The call:

