Created
September 13, 2019 20:44
-
-
Save cescoferraro/eed784ab809bfce575ff6f258087c4f7 to your computer and use it in GitHub Desktop.
MELL NUKE HACK
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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