[SOLVED] I'm failing at drawing multiple quads in a loop

Hmm, first off there is a place where you put in:

i = i+7;

There is no need to re-assign the variable i like that, because you already have that happening in the for loop itself :smiley:

So, if you are going to do that? First off I would say up top in your for loop, change your i++ to i+=8 and just be all good with that.

Secondly, how are you drawing your quads? And where is this for loop? Those could explain why you’re only getting the last quad.

Nonetheless, it would be greatly appreciated if you could post some more code from your project, and we will be glad to help out!

EnhancedLoop7

2 Likes