kytschBASIC

Put down that phone!
Please view me on real computer.

ANIMATION
ID (optional)
Requires arcade library

This will allow you to create an animation function.

Example

INCLUDE arcade

SCREEN "show_me"

	RGB 0,0,0

	BITMAP 0,0,640,480

		RGB 255,0,0



		LINE 120,120,120,200

		LINE 180,120,180,200

		LINE 120,160,180,160



		LINE 200,160,200,165

		LINE 200,170,200,200



		LINE 230,120,230,180

		CIRCLE 230,195,10



		CIRCLE 400,180,220



		CIRCLE 425,150,40

		CIRCLE 375,150,40



		ARC 400,160,25,150,155

	END BITMAP

END SCREEN

ANIMATION

	SHOW "show_me"

	SLEEP 1000

	HIDE "show_me"

END ANIMATION

Output

See also