Label Tracker Exports Automatically
Label Tracker Exports
Updated: 26 May 2021
Author: nfrancisj
Compatible Nuke versions: 10.5 or later
Compatibility: Windows
Info:
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.
Bugs? Let me know at
Demo:
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
####