Skip to content

Instantly share code, notes, and snippets.

@cescoferraro
Created September 13, 2019 20:44
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 cescoferraro/eed784ab809bfce575ff6f258087c4f7 to your computer and use it in GitHub Desktop.
Save cescoferraro/eed784ab809bfce575ff6f258087c4f7 to your computer and use it in GitHub Desktop.
MELL NUKE HACK
import nuke
import timelog
nuke.addOnScriptLoad(timelog.Timelog().start_thread
import os
import threading
import nuke
class Timelog():
def start_thread(self):
self.thread = threading.Timer(5, self.make_blur)
self.thread.start()
def make_blur(self):
nuke.createNode("Blur")
self.start_thread()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment