home *** CD-ROM | disk | FTP | other *** search
/ Bitfellas Bitjam / bitfellasbitjamcdbitfellas2007.iso / interface / intro / flare.ps < prev    next >
Text File  |  2007-08-06  |  444b  |  19 lines

  1. float amp;
  2. float pos;
  3. float4 main(float2 x:TEXCOORD0): COLOR {
  4.     float2 coords = x;
  5.     float4 color;
  6.     if((x.y < (.083 - pos)) || (x.y > (.667 + pos))) return(0);
  7.     else {
  8.         coords.x -= .5;
  9.         coords.y -= .5;
  10.         coords.x += .068;
  11.         coords.y += .046;
  12.         color.r = 1 - pow(dot(coords, coords*.2),amp);
  13.         color.g = color.r * .55;
  14.         color.b = color.r * .1;
  15.         color.a = color.r;
  16.         return color;
  17.     }
  18. }
  19.