white

Blitz3D Forums/Blitz3D Programming/white

Oiduts Studios(Posted 2008) [#1]
how do you make the background in 2d games any other color instead of black?


Gabriel(Posted 2008) [#2]
It's been years since I did this, but I think

ClsColor 255,255,255

Repeat
   Cls()
   ; DRAW STUFF
   Flip()
Until GameOver=True



Oiduts Studios(Posted 2008) [#3]
thank you!