dbr / tabtabtab-nuke

A replacement for Nuke's "tab" node creator
http://www.nukepedia.com/python/ui/tabtabtab
The Unlicense
36 stars 14 forks source link

Can tabtabtabLeagacy be incorporated cleanly? #3

Open dbr opened 12 years ago

dbr commented 12 years ago

Dylan has made tabtabtab work in 6.2... I wonder if the compatibility layer be refactored into a separate tabtabtab_legacy module, which doesn't duplicate the contents - then people could do something like:

curl -O http://.../tabtabtab.py
curl -O http://.../tabtabtab_legacy.py

Then:

if nuke_version < 6.3:
    import tabtabtab_legacy as ttt
else:
    import tabtabtab as ttt
# ...