Having difficulty understanding Renderer(), is there somewhere this is explained better?
function checkerboard()
xSpace = (GetScreenBoundsRight() - GetScreenBoundsLeft())/100
ySpace = (GetScreenBoundsBottom() - GetScreenBoundsTop())/50
b = MakeColor(30,30,30)
a = MakeColor(40,40,40)
for i = 0 to 100
for j = 0 to 50
SetRenderToImage(checker,-1)
DrawBox((xSpace*i) , (ySpace*j) , (xSpace*i)+10, (ySpace*j)+10,b,b,b,b,1)
DrawBox((xSpace*i)+10 , (ySpace*j)+10 , (xSpace*i)+19, (ySpace*j)+19,a,a,a,a,1)
next j
next i
SetRenderToScreen()
Render()
endfunction