Hello people can someone explain to me how I can create 9 objects as in the example?
I know I need a loop, but what's next?
Develop games in your browser. Powerful, performant & highly capable.
You can use two "for" loops to draw the objects, one for the grid width, one for the grid height:
dropbox.com/s/c7jaf246dbrvx9o/objectGrid.c3p
In this example you can change the grid using the gridWidth gridHeight and margin variables.
Thanks man! it works!