home *** CD-ROM | disk | FTP | other *** search
- /*
- * $VER: EOT_Bubble.ifx 2.6 (24.04.96)
- * Copyright © 1992-1996 Nova Design, Inc.
- *
- * Inputs:
- * Word(Arg(1),1) = Frame number (1 - N)
- * Word(Arg(1),2) = Main filename ("-" if not specified)
- * Word(Arg(1),3) = Swap filename ("-" if not specified)
- * Word(Arg(1),4) = Sequence number (?)
- * Word(Arg(1),5) = Total number of frames (N)
- *
- * Returns:
- * 0 if successful, non-zero on failure
- *
- */
-
- OPTIONS RESULTS
-
- framenum = Word(Arg(1),1)
- mainname = Word(Arg(1),2)
- swapname = Word(Arg(1),3)
- seqnum = Word(Arg(1),4)
- framemax = Word(Arg(1),5)
-
- base = 'Autofx_Bubble_'
-
-
- count = GETCLIP(base||'Count')
- minr = GETCLIP(base||'MinR')
- maxr = GETCLIP(base||'MaxR')
- rand = GETCLIP(base||'Rand')
- move = GETCLIP(base||'Move')
- orient = GETCLIP(base||'Orient')
-
- IF count = "" THEN count = 10
- IF minr = "" THEN minr = 40
- IF maxr = "" THEN maxr = 75
- IF rand = "" THEN rand = 11248
- IF move = "" THEN move = 5
- IF orient = "" THEN orient = 0
-
- Hook Bubble framenum count minr maxr 15 15 rand 0 '-'move AntiAlias Specular
-
- EXIT rc
-
-