├── .gitignore ├── init.py ├── launchers ├── launch_nuke.py └── launch_nuke.sh ├── menu.py └── scripts ├── README.md ├── browseDir.py └── readFromWrite.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | Thumbs.db 4 | -------------------------------------------------------------------------------- /init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/nuke-scripts/HEAD/init.py -------------------------------------------------------------------------------- /launchers/launch_nuke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/nuke-scripts/HEAD/launchers/launch_nuke.py -------------------------------------------------------------------------------- /launchers/launch_nuke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/nuke-scripts/HEAD/launchers/launch_nuke.sh -------------------------------------------------------------------------------- /menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/nuke-scripts/HEAD/menu.py -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/nuke-scripts/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/browseDir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/nuke-scripts/HEAD/scripts/browseDir.py -------------------------------------------------------------------------------- /scripts/readFromWrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/nuke-scripts/HEAD/scripts/readFromWrite.py --------------------------------------------------------------------------------