Full Screen?

Blitz3D Forums/Blitz3D Programming/Full Screen?

Iso(Posted 2004) [#1]
How do i make my app full screen????


soja(Posted 2004) [#2]
Take it off of debug mode is the most likely answer

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


jfk EO-11110(Posted 2004) [#3]
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.