text color

Blitz3D Forums/Blitz3D Beginners Area/text color

Devine9(Posted 2004) [#1]
Is there somewhere to set thetext color? Because I believe the text color of teh text in the view window is the same color as the background in my copy.. because i can't see a damn thing... i type and row/col changes but thats it.. and it seems to be woring fine otherwise..
this is newest version..

Thanks


eBusiness(Posted 2004) [#2]
You probably draw to the backbuffer, you can set the drawing buffer with SetBuffer(buffer) the buffer can be BackBuffer(), FrontBuffer() or a texture buffer. You can switch the front and back buffer with the Flip command. This way you can draw to a buffer not being displayed and after you have finished drawing to that buffer you can put it on screen instantly, this prevent flickering.

If you wish to alter the text colour, use the Color command: Color red,green,blue with values from 0 to 255. I hope this was answer enought. Welcome to the forum :)


big10p(Posted 2004) [#3]
I think he's talking about the IDE.

Have a look in the blitzide.prefs file. It's in the ..\blitz3d\cfg directory.


Clyde(Posted 2004) [#4]
Have you sorted it mate?