Label Tracker Exports v1.0
This location is for Registered Users Only.
Perhaps you need to login or register.
12.2, 12.1, 12.0, 11.3, 11.2, 11.1, 11.0, 10.5 or later
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 [email protected]
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
####