Character Select Grid

I'm trying to make a grid for 25x25 character portraits but I don't believe the program gimp has the ability to make grids can anyone share how they make theirs?

something like this
hqdefault.jpg
 
If you have the sprites (the face icons), then you can draw a grid directly from OpenBOR using the drawbox function and two for loop, and finally draw the sprites.

Here's a function example you can call in your update.c

Code:
void drawLines(){
	int columnCount = 10;
	int columnWidth = 30;
	
	int c;
	for(c=0; c<columnCount; c++){
		drawbox(c * columnWidth, 0, 2, openborvariant("vResolution"), 20000, rgbcolor(0,0,0));
	}
	
	int lineCount = 5;
	int lineHeight = 20;
	
	int l;
	for(l=0; l<lineCount; l++){
		drawbox(0, l*lineHeight, openborvariant("hResolution"), 2, 20000, rgbcolor(0,0,0));
	}
	
}
 
Back
Top Bottom