I'm trying to do some 2d drawing in what will be a 3d program. It appears that after you sync, you lose whatever you drew...
I know this is probably not the case if you don't set up a 3d environment (which I have - not shown). I tried drawing to a bitmap and then copying that to the screen, but the same thing happens.
Basically, I see a rows of lbocks chasing each other down the screen, when I want to see a picture slowly being built (ie, the previous blocks are retained). Any ideas?
LOAD BITMAP "level1.bmp", 1
CREATE BITMAP 2, BITMAP WIDTH(1)*10, BITMAP HEIGHT(1)*10 `sets as current also
for x=1 TO BITMAP WIDTH(1)
for y=1 TO BITMAP HEIGHT(1)
SET CURRENT BITMAP 1
INK POINT x,y,RGB(0,0,0)
SET CURRENT BITMAP 2
BOX x*10,y*10,x*10+10,y*10+10
SYNC
next y
next x