Nuke Script: Label Tracker Exports

Channel:
Subscribers:
38
Published on ● Video Link: https://www.youtube.com/watch?v=cuE8BI6lbgg



Duration: 1:43
160 views
6


There are countless times when I find myself searching for the source
of the exported Transform/CornerPin, and when there are many trackers
in the nodegraph, it takes way longer than it should.
This is a very simple nuke script that appends the Tracker name to the
exported Transform/CornerPin, and adds the Reference Frame to the label knob,
making it very easy to pinpoint the Tracker.

Download: http://www.nukepedia.com/python/nodegraph/label-tracker-exports

Bugs? Let me know in the comments. Thanks!

Install:
1) COPY TokyoSoupTools FOLDER TO .NUKE FOLDER

2) ADD TO INIT.PY

nuke.pluginAddPath(".\TokyoSoupTools\gizmos")
nuke.pluginAddPath(".\TokyoSoupTools\icons")
nuke.pluginAddPath(".\TokyoSoupTools\scripts")

3) ADD TO MENU.PY

#### Track Export Auto Label ####
try:
from trackExportAutoLabel import *
nuke.addOnUserCreate(trackerExportAutoLabel, nodeClass = "Tracker4")
except: pass

####