Loop のバックアップソース(No.1)

#code(nonumber){{
Loop(clip clip[, int times, int start_frame, int end_frame])
}}

Loops the segment from start_frame to end_frame a given number of times. Setting times to -1 loops a "very large" number of times.

Examples:

#code(nonumber){{
# Loops frame 100 to 110 of the current clip 10 times:
Loop(10,100,110)
}}

#code(nonumber){{
Loop() # make the clip loop (almost) endlessly
}}

#code(nonumber){{
Loop(10) # make the clip loop ten times
}}

#code(nonumber){{
Loop(10,20,29) # repeat frames 20 to 29 ten times before going on, actual clip duration increased by 90 frames
}}

#code(nonumber){{
Loop(0,20,29) # delete frames 20 to 29, actual clip duration decreased by 10 frames
}}

#code(nonumber){{
Loop(-1,20,29) # frame 20 to 29 is repeated (almost) infinite times
}}