;; Persistence Of Vision raytracer version 3.0 sample INI file.
;; PNGFLC.INI
;;
;; Assuming Input_File=myfile.pov
;;  this INI creates a myfile??.png output files
;;  and then creates myfile.flc from it.
;;
;; Since DTA is not available for Unix, this script is only included as
;; an example of how one would create a FLC automatically using an INI file.
;;

Output_to_File=On
Output_File_Type=n
Pre_Frame_Command=
Pre_Frame_Return=
Post_Frame_Command=
Post_Frame_Return=
Pre_Scene_Command=test -r %s.flc    ;;If myfile.flc already exists
Pre_Scene_Return=-q                 ;;  skip entire scene
Post_Scene_Command=dta /o%s.flc /R%w,%h %s*.png  ;;make myfile.flc
Post_Scene_Return=f                 ;;If error, crash
Pause_When_Done=Off
Continue_Trace=On                ;;Lets you resume
Test_Abort=On                    ;;Lets you interrupt
