[bb] Hyper Screen Fader by n8r2k [ 1+ years ago ]

Started by BlitzBot, June 29, 2017, 00:28:39

Previous topic - Next topic

BlitzBot

Title : Hyper Screen Fader
Author : n8r2k
Posted : 1+ years ago

Description : I will get to posting this on <a href="http://n8r2k.deviousbytes.com/" target="_blank">http://n8r2k.deviousbytes.com/</a> soon. And after that I will comment this. Basically, it  fades the srceen very smoothly and can do multiple colors.

Code :
Code (blitzbasic) Select
Graphics 1024,768,0,1
n =0
n2 = 0
n1 = 0
While Not KeyHit(1)
Cls
n = n + 3

If n1 = 0
ClsColor n,0,0
n2 = 0
ElseIf n1 = 1
ClsColor 0,n,0
n2 = 0
ElseIf n1 = 2
ClsColor 0,0,n
n2 = 0
ElseIf n1 = 3
ClsColor n,0,n
n2 = 0
ElseIf n1 = 4
ClsColor n,n,0
n2 = 0
ElseIf n1 = 5
ClsColor 0,n,n
n2 = 0
EndIf

If n > 250
n= 0
n1 = n1 + 1
EndIf

If n1 = 6
n1 = 0
EndIf

Flip
Wend


Comments : none...