home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / graphics / polyfilm / data / saucer.mcl < prev    next >
Text File  |  1993-06-03  |  444b  |  26 lines

  1. % Demo using 30 step light source shading in blue with point
  2. % Light source
  3.  
  4. type saucer "\data\saucer.3d";
  5.  
  6. prefs "\data\blues.prf";
  7. palette 1;
  8.  
  9. object obj1 type saucer at [200,0,500];
  10. object obj2 type saucer at [-200,0,500];
  11. camera cam1;
  12. lightsource lig1 at [0,0,250];
  13.  
  14. obj1.main[]{
  15.   rotate speed [16,24,32];
  16.   wait;
  17. }
  18. obj2.main[]{
  19.   rotate speed [-16,-24,-32];
  20.   wait;
  21. }
  22.  
  23. cam1.main[]{ wait; }
  24. lig1.main[]{ wait; }
  25.  
  26.