Qbasicnews.com

Full Version: Moving Bitmaps
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Aight i am making a game and i got the game all made up but i want to add a little animated thing at the begining of the game.
i want the bitmap to move from one side of the screen to the other but it moves so fast you can see anything is there anyway to make it move smooth and fast?

this is what i have so far
Code:
GET (1, 1)-(200, 100), crash
CLS

FOR i = 1 TO 200 STEP 10
LINE (0, 0)-(320, 200), 0, BF
PUT (i, 50), crash
NEXT
DO: LOOP WHILE INKEY$ = ""