So I'm almost finished my script, but I wanted to add another for loop within a quad-nested loop, but when I test the script, it won't even go through the fifth loop.
Is there a limitation in the engine that will allow it to go through so many nested loops before it says, "Are you ****ing nuts!? No way I'm going through another loop!"
Example:
for (iteration) {
for (iteration) {
for (iteration) {
for (iteration) {
for(iteration) { <--this loop is never initiated, I get no errors or anything
}
}
}
}
}
I could probably break them up if they're is a limitation, but not sure how to, each one is depend the previous.
Thanks for any advice!