home *** CD-ROM | disk | FTP | other *** search
/ Bitfellas Bitjam / bitfellasbitjamcdbitfellas2007.iso / Dats / flare.ps < prev    next >
Text File  |  2007-08-03  |  342b  |  15 lines

  1. float amp;
  2. float4 main(float2 x:TEXCOORD0): COLOR {
  3.     float2 coords = x;
  4.     float4 color;
  5.     coords.x -= .5;
  6.     coords.y -= .5;
  7.     coords.x += .068;
  8.     coords.y += .047;
  9.     color.r = 1 - pow(dot(coords, coords*.2),amp);
  10.     color.g = color.r * .55;
  11.     color.b = color.r * .1;
  12.     color.a = color.r;
  13.     return color;
  14. }
  15.