home *** CD-ROM | disk | FTP | other *** search
/ Bila Vrana / BILA_VRANA.iso / 007A / MORAY20.ZIP / CALLMRAY.BAT next >
DOS Batch File  |  1996-01-11  |  922b  |  43 lines

  1. @echo off
  2. REM 
  3. REM This Batchfile should be used on computers with too little memory for
  4. REM model/render/model loop.
  5. REM 
  6.  
  7. :ModelIt
  8. REM Please enter the drive where you installed Moray on the next line.
  9. c:
  10.  
  11. REM Please change the path to reflect where you installed Moray.
  12. cd \moray
  13.  
  14. REM The next line is the actual call to Moray. The -B is essential.
  15. MORAY.EXE -B 
  16.  
  17. REM Moray is done. Check whether a render was requested.
  18. if errorlevel 17 goto POVRender
  19. if errorlevel 16 goto PolyRender
  20. if errorlevel 1 goto Err1
  21.  
  22. REM No Errorlevel, so leave the loop ...
  23. goto Ende
  24.  
  25. REM A POV-Ray Render was requested ...
  26. :POVRender
  27. cd povscn
  28. call go.bat
  29. goto ModelIt
  30.  
  31. REM A Polyray Render was requested ...
  32. :PolyRender
  33. cd polyscn
  34. call go.bat
  35. goto ModelIt
  36.  
  37. :Err1
  38. echo POV-Ray or Polyray returned an error. If it wasn't one, please check the
  39. echo Manual for the IgnoreErrorLevel keyword.
  40.  
  41. :Ende
  42.  
  43.