home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- CLS
- ECHO When CMorph runs, press ALT-S to start generating the morph. If you do,
- ECHO when it's done, you will have 30 TGA files (requiring about 5.8MB on HD)
- ECHO that will need to be compiled into an animation file of some sort (like
- ECHO FLI, ANI, etc.) A popular shareware program for this, is DTA (Dave's
- ECHO Targa Animator). See READ.ME file for more information.
- ECHO.
- ECHO For a complete list of command line options (there's quite a few), just
- ECHO run CMorph with no parameters.
- ECHO.
- ECHO.
- ECHO.
- ECHO.
- ECHO If you want to stop this demo, type CTRL-C now. Otherwise...
- ECHO.
- PAUSE
-
- REM ---------------------------------------------------------------------------
- REM The following line will run CMorph with KIM.TGA for a sourse image,
- REM LISAWELC.TGA as a target image, and automatically load options and the
- REM mesh from the file LISAKIM.MSH.
- REM ---------------------------------------------------------------------------
-
- CMORPH KIM.TGA LISAWELC.TGA -MLISAKIM.MSH %1 %2 %3 %4 %5 %6 %7 %8 %9
-
- ECHO.
- ECHO.
- ECHO.
- ECHO.
- ECHO WOULD YOU LIKE TO PRINT THE REGISTRATION FORM [Y/N]:
-
- CHOICE /C:YN
- IF ERRORLEVEL 2 GOTO NO-PRINT
- IF ERRORLEVEL 1 GOTO PRINT
-
- :YES
- ECHO PRINTING FORM
- PAUSE
- COPY REGISTER.DOC PRN:
- GOTO END
-
- :NO-PRINT
- ECHO NOT PRINTING FORM
- PAUSE
- GOTO END
-
- :END
-