home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Bitfellas Bitjam
/
bitfellasbitjamcdbitfellas2007.iso
/
interface
/
intro
/
flare.ps
< prev
next >
Wrap
Text File
|
2007-08-06
|
444b
|
19 lines
float amp;
float pos;
float4 main(float2 x:TEXCOORD0): COLOR {
float2 coords = x;
float4 color;
if((x.y < (.083 - pos)) || (x.y > (.667 + pos))) return(0);
else {
coords.x -= .5;
coords.y -= .5;
coords.x += .068;
coords.y += .046;
color.r = 1 - pow(dot(coords, coords*.2),amp);
color.g = color.r * .55;
color.b = color.r * .1;
color.a = color.r;
return color;
}
}