home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _72C6F4346B914F1385CF4909050083EC < prev    next >
Encoding:
Text File  |  2004-03-17  |  577 b   |  27 lines

  1. regc4f( 5, %daycolor_r, %daycolor_g, %daycolor_b, %daycolor_a )
  2. regc4f( 7, %ambient_r, %ambient_g, %ambient_b, %ambient_a )
  3. pshader("
  4.  
  5. ;#include <consts.psh>
  6. ps_1_1
  7.  
  8. ;def c5, DAYCOLOR
  9. ;def    c7, AMBIENT
  10.  
  11.  
  12. tex t0 ;texture
  13. tex t1 ;Clouds
  14.  
  15.  
  16. mul r1, v0, 1-t1.a ;lightmapa * chmury
  17.  
  18. mad_sat r1, r1, c7, c7.a ;skalowanie oswietlenia (dodanie ambientu)
  19.  
  20. mul r1, r1, c5 ;wymnozenie oswietlenia przez kolor pory dnia/swiatla
  21.  
  22. mul r0.rgb, r1, t0 ;mnozy teksture przez zmodyfikowana lightmape
  23. +mul r0.a, t0.a, v0.a ;mnozy alphe diffusa z alpha textury (fade)
  24.  
  25. ")
  26.  
  27.