Hi I'm trying to draw something after using the renderworld using opengl and nothing is shown....
here is the function that I call after RenderWorld()
somehow nothing shows up.. :(
Can someone help me?
Function RenderGrid(l:Byte,s:Int) glColor3f(0.5,0.5,0.5) glBegin(GL_TRIANGLE_STRIP) For Local i:Int = -l/2 To l/2 glVertex2f(i,-1) glVertex2f(i,1) glVertex2f(-1,l) glVertex2f(1,l) Next glEnd() End Function
here is the function that I call after RenderWorld()
somehow nothing shows up.. :(
Can someone help me?