Skip to content

Instantly share code, notes, and snippets.

@raganmd
Last active July 26, 2021 02:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raganmd/7f0a87ed706cd6de83257212f730f2d7 to your computer and use it in GitHub Desktop.
Save raganmd/7f0a87ed706cd6de83257212f730f2d7 to your computer and use it in GitHub Desktop.
# delay scripts example
# first we write out script as a string
delay_script = "constant_op.par.value0 = args[0]"
constant_op = op('constant1')
# next we run our script
for each_time in range(10):
run(delay_script, (each_time+1), delayFrames = 60 * (each_time + 1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment