I am working on a program in which I write information to a text file that is created in the program. My problem is I want to write
"brick.bmp";
0n one line. However, what blitz3d writes to the text file is
brick.bmp
How do I get it to write "brick.bmp";
Try this example
;;;
;;;
Graphics3D 800,600
While Not KeyDown(1)
UpdateWorld
RenderWorld
Text 300,300, "brick.bmp"
Flip
Wend
End
"brick.bmp";
0n one line. However, what blitz3d writes to the text file is
brick.bmp
How do I get it to write "brick.bmp";
Try this example
;;;
;;;
Graphics3D 800,600
While Not KeyDown(1)
UpdateWorld
RenderWorld
Text 300,300, "brick.bmp"
Flip
Wend
End