Noobie - odd info request

Previous topic - Next topic

saboteur

I'm trying to do something a little odd and before purchasing GLBasic I want to know if you guys think it's possible.

The target device is the GP2X.

I want to display  3 different images but at such a speed that they look like one image to the naked eye ( display image1, clear screen display image2 etc ).

Sounds odd I know but Is this possible ??

Any and all help greatly appreciated.

Cheers

Schranz0r

hi,
i think its possible ,
you can test it with the demoversion .
I <3 DGArray's :D

PC:
AMD Ryzen 7 3800X 16@4.5GHz, 16GB Corsair Vengeance LPX DDR4-3200 RAM, ASUS Dual GeForce RTX™ 3060 OC Edition 12GB GDDR6, Windows 11 Pro 64Bit, MSi Tomahawk B350 Mainboard

Moru

I don't see why not, just do:

Code (glbasic) Select
LOADSPRITE "picture1.png", 1
LOADSPRITE "picture2.png", 2
LOADSPRITE "picture3.png", 3

WHILE TRUE

DRAWSPRITE 1, 0, 0
SHOWSCREEN

DRAWSPRITE 2, 0, 0
SHOWSCREEN

DRAWSPRITE 3, 0, 0
SHOWSCREEN

WEND
No need to clear the screen inbetween, unless you realy want a black screen between the pictures.

Only problem you might find is that it can be troublesome with long filenames and big/small letters in the GP2X so stay away from them both :-)