For Loops and If Statement help.

Hey guys,

I’m trying to convert some code into Blueprint but I’m not sure I’m doing it correct. Could you take a look at this image and let me know if you see any mistakes or if there is something I could do different?

Here is what I’m recreating:

for (x = -1; x <= 1; x++) {
for (y = -1; y <= 1; y++) {
if (x == 0 && y == 0)
continue;

what comes after it gets pretty complex and I’m still working on it but I don’t want to get stuck in a loop so I figured I’d ask first.

thanks!