Does it work to make a screenshot function in blitz3d?
It would be good to know.
It would be good to know.
;get key for screenshots keyboard=GetKey() If keyboard=Asc("t") While FileType("./screenshots/screenshot"+(Str scount)+".bmp")=1 scount=scount+1 Wend screenshot$= "./screenshots/screenshot"+(Str scount)+".bmp" SaveBuffer(BackBuffer(),screenshot$) scount=scount+1 EndIf