0 Members and 1 Guest are viewing this topic.
'c64 random color loading demo'Posted to DBF-GVY Demo Code Forum by DaD1916 scsicork@hotmail.com'DrawsStrictGraphics 800,600,32HideMouse()Repeat Cls C64Loading FlipUntil KeyHit(KEY_ESCAPE)EndFunction C64Loading()Local y=0,hRepeat If KeyHit(KEY_ESCAPE) End h=Rand(5,60) SetColor Rand(255),Rand(255),Rand(255) DrawRect 0,y,GraphicsWidth(),h y:+hUntil y>=GraphicsHeight()End Function