Full Screen?

Blitz3D Forums/Blitz3D Programming/Full Screen?

How do i make my app full screen????

Take it off of debug mode is the most likely answer

Look up the Graphics command -- you can also specifically specify full screen

I'd rather say, use the explicit fullscreen flag in the graphics command. but you could have find this out by reading the Command reference:

Graphics3D width, height,color_resolution, FULLSCREEN_FLAG
example:
Graphics3D 640,480,32,1

where 1 means fullscreen and 2 means windowed. For further infos set the cursor on the Graphcs3D Command and press the F1 key tice.