Load images by script
by Danny Mejia · in Torque Game Builder · 09/09/2006 (8:17 pm) · 0 replies
I need to load a 5x5 grid of image on the screen what would be the best to do this will code? I know I need something like this.
for(%i=0; %i<5; %i++)
{
for(%j=0; %j<5; %j++)
{
drawNewImage();
}
}
for(%i=0; %i<5; %i++)
{
for(%j=0; %j<5; %j++)
{
drawNewImage();
}
}
About the author