├── .gitignore ├── .vscode └── settings.json ├── Qt.py ├── README.md ├── W_hotbox └── Single │ └── No Selection │ ├── 001 │ └── _name.json │ └── _old │ └── 20230527193248 │ └── _name.json ├── Workspaces ├── DefaultMoggach.xml ├── DualMonitor.xml └── Nuke │ └── Compositing.xml ├── formats.tcl ├── init.py ├── menu.py ├── mynk ├── __init__.py ├── base.py ├── config.py ├── configobj │ ├── __init__.py │ ├── _version.py │ └── validate.py ├── const.py ├── constants.py ├── data │ ├── defaults.cfg │ └── formats.tcl ├── exceptions.py ├── formats.py ├── gizmos.py ├── gui.py ├── icons │ ├── mynk.png │ ├── mynk.psd │ ├── mynk_classic.png │ └── mynkx.png ├── internal.py ├── knobs.py ├── listUtils.py ├── logger.py ├── munch │ ├── __init__.py │ └── python3_compat.py ├── prefs.py └── tools.py ├── preferences13.2.nk ├── preferences14.0.nk └── tools ├── README.md ├── gizmos └── README.md ├── python ├── W │ ├── LICENSE.txt │ ├── W_backdropper.py │ ├── W_backdropperInstructions.txt │ ├── W_backdropperPresets.backdropper │ ├── W_dontUseNativeMenuBar.py │ ├── W_hotbox.py │ ├── W_hotboxArchiveImportTemp_202011141829 │ │ └── hotboxArchive_202011141829.tar.gz │ ├── W_hotboxArchiveImportTemp_202011141830 │ │ └── hotboxArchive_202011141830.tar.gz │ ├── W_hotboxManager.py │ ├── W_hotbox_InstallationGuide.txt │ ├── W_hotbox_UserGuide_v1.9.pdf │ ├── W_moveMenu.py │ ├── W_moveMenu_UserGuide_v1.0.pdf │ ├── W_scaleTree.py │ ├── W_scaleTreeInstallationGuide.txt │ ├── W_smartAlign.py │ ├── buttonBundle.hotbox │ └── icons │ │ ├── W_hotbox │ │ ├── hotbox_addFolder_clicked.png │ │ ├── hotbox_addFolder_hover.png │ │ ├── hotbox_addFolder_neutral.png │ │ ├── hotbox_add_clicked.png │ │ ├── hotbox_add_hover.png │ │ ├── hotbox_add_neutral.png │ │ ├── hotbox_copy_clicked.png │ │ ├── hotbox_copy_hover.png │ │ ├── hotbox_copy_neutral.png │ │ ├── hotbox_duplicate_clicked.png │ │ ├── hotbox_duplicate_hover.png │ │ ├── hotbox_duplicate_neutral.png │ │ ├── hotbox_moveDown_clicked.png │ │ ├── hotbox_moveDown_hover.png │ │ ├── hotbox_moveDown_neutral.png │ │ ├── hotbox_moveUpLevel_clicked.png │ │ ├── hotbox_moveUpLevel_hover.png │ │ ├── hotbox_moveUpLevel_neutral.png │ │ ├── hotbox_moveUp_clicked.png │ │ ├── hotbox_moveUp_hover.png │ │ ├── hotbox_moveUp_neutral.png │ │ ├── hotbox_paste_clicked.png │ │ ├── hotbox_paste_hover.png │ │ ├── hotbox_paste_neutral.png │ │ ├── hotbox_paste_rename_clicked.png │ │ ├── hotbox_remove_clicked.png │ │ ├── hotbox_remove_hover.png │ │ ├── hotbox_remove_neutral.png │ │ ├── hotbox_remove_neutral_clicked.png │ │ ├── hotbox_rename_clicked.png │ │ ├── hotbox_rename_hover.png │ │ ├── hotbox_rename_neutral.png │ │ └── icon.png │ │ └── W_scaleTree │ │ ├── W_scaleTree_pivotArrow_0.png │ │ ├── W_scaleTree_pivotArrow_1.png │ │ ├── W_scaleTree_pivotArrow_2.png │ │ ├── W_scaleTree_pivotArrow_3.png │ │ ├── W_scaleTree_pivotArrow_4.png │ │ ├── W_scaleTree_pivotArrow_5.png │ │ ├── W_scaleTree_pivotArrow_6.png │ │ ├── W_scaleTree_pivotArrow_7.png │ │ ├── W_scaleTree_pivotArrow_8.png │ │ └── W_scaleTree_pivotArrow_9.png ├── _builtins.py ├── camera │ ├── cameraToCard.py │ └── createProjector.py ├── channel │ ├── chanData.py │ └── shuffle_to_layers.py ├── edit │ ├── nodes │ │ ├── align │ │ │ ├── alignNodes.py │ │ │ └── mirrorNodes.py │ │ ├── create │ │ │ ├── createDots.py │ │ │ ├── createLinks.py │ │ │ ├── createReadFromWrite.py │ │ │ ├── createWrite.py │ │ │ ├── createWriteDirs.py │ │ │ └── createWriteFromRead.py │ │ ├── kiss.py │ │ ├── revealInFolder.py │ │ └── showInputDir.py │ ├── pasteToSelected.py │ ├── setLabel.py │ └── setStartAt.py ├── file │ ├── archive.py │ └── todo.py ├── other │ ├── backdropManager.py │ ├── deleteViewers.py │ ├── flameViewer.py │ ├── lockViewer.py │ └── viewerChannelHotbox.py ├── time │ ├── appendClips.py │ ├── frameHoldSet.py │ └── menu.py ├── transform │ └── trackerExport.py └── utils.py └── tcl ├── TogglePanel.tcl ├── anim_vers_update.tcl ├── class_disable.tcl ├── m4vReader.tcl └── set_label.tcl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/Qt.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/README.md -------------------------------------------------------------------------------- /W_hotbox/Single/No Selection/001/_name.json: -------------------------------------------------------------------------------- 1 | New Menu -------------------------------------------------------------------------------- /W_hotbox/Single/No Selection/_old/20230527193248/_name.json: -------------------------------------------------------------------------------- 1 | New Menu -------------------------------------------------------------------------------- /Workspaces/DefaultMoggach.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/Workspaces/DefaultMoggach.xml -------------------------------------------------------------------------------- /Workspaces/DualMonitor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/Workspaces/DualMonitor.xml -------------------------------------------------------------------------------- /Workspaces/Nuke/Compositing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/Workspaces/Nuke/Compositing.xml -------------------------------------------------------------------------------- /formats.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/formats.tcl -------------------------------------------------------------------------------- /init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/init.py -------------------------------------------------------------------------------- /menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/menu.py -------------------------------------------------------------------------------- /mynk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/__init__.py -------------------------------------------------------------------------------- /mynk/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/base.py -------------------------------------------------------------------------------- /mynk/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/config.py -------------------------------------------------------------------------------- /mynk/configobj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/configobj/__init__.py -------------------------------------------------------------------------------- /mynk/configobj/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '5.0.8' -------------------------------------------------------------------------------- /mynk/configobj/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/configobj/validate.py -------------------------------------------------------------------------------- /mynk/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/const.py -------------------------------------------------------------------------------- /mynk/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/constants.py -------------------------------------------------------------------------------- /mynk/data/defaults.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/data/defaults.cfg -------------------------------------------------------------------------------- /mynk/data/formats.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/data/formats.tcl -------------------------------------------------------------------------------- /mynk/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/exceptions.py -------------------------------------------------------------------------------- /mynk/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/formats.py -------------------------------------------------------------------------------- /mynk/gizmos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/gizmos.py -------------------------------------------------------------------------------- /mynk/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/gui.py -------------------------------------------------------------------------------- /mynk/icons/mynk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/icons/mynk.png -------------------------------------------------------------------------------- /mynk/icons/mynk.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/icons/mynk.psd -------------------------------------------------------------------------------- /mynk/icons/mynk_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/icons/mynk_classic.png -------------------------------------------------------------------------------- /mynk/icons/mynkx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/icons/mynkx.png -------------------------------------------------------------------------------- /mynk/internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/internal.py -------------------------------------------------------------------------------- /mynk/knobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/knobs.py -------------------------------------------------------------------------------- /mynk/listUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/listUtils.py -------------------------------------------------------------------------------- /mynk/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/logger.py -------------------------------------------------------------------------------- /mynk/munch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/munch/__init__.py -------------------------------------------------------------------------------- /mynk/munch/python3_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/munch/python3_compat.py -------------------------------------------------------------------------------- /mynk/prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/prefs.py -------------------------------------------------------------------------------- /mynk/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/mynk/tools.py -------------------------------------------------------------------------------- /preferences13.2.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/preferences13.2.nk -------------------------------------------------------------------------------- /preferences14.0.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/preferences14.0.nk -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/gizmos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/gizmos/README.md -------------------------------------------------------------------------------- /tools/python/W/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/LICENSE.txt -------------------------------------------------------------------------------- /tools/python/W/W_backdropper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_backdropper.py -------------------------------------------------------------------------------- /tools/python/W/W_backdropperInstructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_backdropperInstructions.txt -------------------------------------------------------------------------------- /tools/python/W/W_backdropperPresets.backdropper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_backdropperPresets.backdropper -------------------------------------------------------------------------------- /tools/python/W/W_dontUseNativeMenuBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_dontUseNativeMenuBar.py -------------------------------------------------------------------------------- /tools/python/W/W_hotbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_hotbox.py -------------------------------------------------------------------------------- /tools/python/W/W_hotboxArchiveImportTemp_202011141829/hotboxArchive_202011141829.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_hotboxArchiveImportTemp_202011141829/hotboxArchive_202011141829.tar.gz -------------------------------------------------------------------------------- /tools/python/W/W_hotboxArchiveImportTemp_202011141830/hotboxArchive_202011141830.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_hotboxArchiveImportTemp_202011141830/hotboxArchive_202011141830.tar.gz -------------------------------------------------------------------------------- /tools/python/W/W_hotboxManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_hotboxManager.py -------------------------------------------------------------------------------- /tools/python/W/W_hotbox_InstallationGuide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_hotbox_InstallationGuide.txt -------------------------------------------------------------------------------- /tools/python/W/W_hotbox_UserGuide_v1.9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_hotbox_UserGuide_v1.9.pdf -------------------------------------------------------------------------------- /tools/python/W/W_moveMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_moveMenu.py -------------------------------------------------------------------------------- /tools/python/W/W_moveMenu_UserGuide_v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_moveMenu_UserGuide_v1.0.pdf -------------------------------------------------------------------------------- /tools/python/W/W_scaleTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_scaleTree.py -------------------------------------------------------------------------------- /tools/python/W/W_scaleTreeInstallationGuide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_scaleTreeInstallationGuide.txt -------------------------------------------------------------------------------- /tools/python/W/W_smartAlign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/W_smartAlign.py -------------------------------------------------------------------------------- /tools/python/W/buttonBundle.hotbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/buttonBundle.hotbox -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_addFolder_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_addFolder_clicked.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_addFolder_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_addFolder_hover.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_addFolder_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_addFolder_neutral.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_add_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_add_clicked.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_add_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_add_hover.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_add_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_add_neutral.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_copy_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_copy_clicked.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_copy_hover.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_copy_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_copy_neutral.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_duplicate_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_duplicate_clicked.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_duplicate_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_duplicate_hover.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_duplicate_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_duplicate_neutral.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_moveDown_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_moveDown_clicked.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_moveDown_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_moveDown_hover.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_moveDown_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_moveDown_neutral.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_moveUpLevel_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_moveUpLevel_clicked.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_moveUpLevel_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_moveUpLevel_hover.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_moveUpLevel_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_moveUpLevel_neutral.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_moveUp_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_moveUp_clicked.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_moveUp_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_moveUp_hover.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_moveUp_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_moveUp_neutral.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_paste_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_paste_clicked.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_paste_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_paste_hover.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_paste_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_paste_neutral.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_paste_rename_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_paste_rename_clicked.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_remove_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_remove_clicked.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_remove_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_remove_hover.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_remove_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_remove_neutral.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_remove_neutral_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_remove_neutral_clicked.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_rename_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_rename_clicked.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_rename_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_rename_hover.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/hotbox_rename_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/hotbox_rename_neutral.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_hotbox/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_hotbox/icon.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_0.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_1.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_2.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_3.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_4.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_5.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_6.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_7.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_8.png -------------------------------------------------------------------------------- /tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/W/icons/W_scaleTree/W_scaleTree_pivotArrow_9.png -------------------------------------------------------------------------------- /tools/python/_builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/_builtins.py -------------------------------------------------------------------------------- /tools/python/camera/cameraToCard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/camera/cameraToCard.py -------------------------------------------------------------------------------- /tools/python/camera/createProjector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/camera/createProjector.py -------------------------------------------------------------------------------- /tools/python/channel/chanData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/channel/chanData.py -------------------------------------------------------------------------------- /tools/python/channel/shuffle_to_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/channel/shuffle_to_layers.py -------------------------------------------------------------------------------- /tools/python/edit/nodes/align/alignNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/nodes/align/alignNodes.py -------------------------------------------------------------------------------- /tools/python/edit/nodes/align/mirrorNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/nodes/align/mirrorNodes.py -------------------------------------------------------------------------------- /tools/python/edit/nodes/create/createDots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/nodes/create/createDots.py -------------------------------------------------------------------------------- /tools/python/edit/nodes/create/createLinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/nodes/create/createLinks.py -------------------------------------------------------------------------------- /tools/python/edit/nodes/create/createReadFromWrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/nodes/create/createReadFromWrite.py -------------------------------------------------------------------------------- /tools/python/edit/nodes/create/createWrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/nodes/create/createWrite.py -------------------------------------------------------------------------------- /tools/python/edit/nodes/create/createWriteDirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/nodes/create/createWriteDirs.py -------------------------------------------------------------------------------- /tools/python/edit/nodes/create/createWriteFromRead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/nodes/create/createWriteFromRead.py -------------------------------------------------------------------------------- /tools/python/edit/nodes/kiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/nodes/kiss.py -------------------------------------------------------------------------------- /tools/python/edit/nodes/revealInFolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/nodes/revealInFolder.py -------------------------------------------------------------------------------- /tools/python/edit/nodes/showInputDir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/nodes/showInputDir.py -------------------------------------------------------------------------------- /tools/python/edit/pasteToSelected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/pasteToSelected.py -------------------------------------------------------------------------------- /tools/python/edit/setLabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/setLabel.py -------------------------------------------------------------------------------- /tools/python/edit/setStartAt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/edit/setStartAt.py -------------------------------------------------------------------------------- /tools/python/file/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/file/archive.py -------------------------------------------------------------------------------- /tools/python/file/todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/file/todo.py -------------------------------------------------------------------------------- /tools/python/other/backdropManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/other/backdropManager.py -------------------------------------------------------------------------------- /tools/python/other/deleteViewers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/other/deleteViewers.py -------------------------------------------------------------------------------- /tools/python/other/flameViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/other/flameViewer.py -------------------------------------------------------------------------------- /tools/python/other/lockViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/other/lockViewer.py -------------------------------------------------------------------------------- /tools/python/other/viewerChannelHotbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/other/viewerChannelHotbox.py -------------------------------------------------------------------------------- /tools/python/time/appendClips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/time/appendClips.py -------------------------------------------------------------------------------- /tools/python/time/frameHoldSet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/time/frameHoldSet.py -------------------------------------------------------------------------------- /tools/python/time/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/time/menu.py -------------------------------------------------------------------------------- /tools/python/transform/trackerExport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/transform/trackerExport.py -------------------------------------------------------------------------------- /tools/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/python/utils.py -------------------------------------------------------------------------------- /tools/tcl/TogglePanel.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/tcl/TogglePanel.tcl -------------------------------------------------------------------------------- /tools/tcl/anim_vers_update.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/tcl/anim_vers_update.tcl -------------------------------------------------------------------------------- /tools/tcl/class_disable.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/tcl/class_disable.tcl -------------------------------------------------------------------------------- /tools/tcl/m4vReader.tcl: -------------------------------------------------------------------------------- 1 | load movReader 2 | return 3 | -------------------------------------------------------------------------------- /tools/tcl/set_label.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjmoggach/nuke-dotnuke/HEAD/tools/tcl/set_label.tcl --------------------------------------------------------------------------------