https://github.com/falkhofmann/nuke_node_linker
https://github.com/falkhofmann/nuke_node_linker
compositing foundry-nuke nuke
Last synced: about 9 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/falkhofmann/nuke_node_linker
- Owner: falkhofmann
- License: gpl-3.0
- Created: 2021-11-19T21:00:32.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-26T10:58:39.000Z (almost 4 years ago)
- Last Synced: 2025-10-11T05:32:08.426Z (about 9 hours ago)
- Topics: compositing, foundry-nuke, nuke
- Language: Python
- Homepage: http://www.kombinat-13b.de/
- Size: 28.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
Usage
-----
In the time where there have been a lot of hidden input tools are floating around, I build up my own since each of them were missing feature I would like to have as well as had bigger performance impact.To see the tool in action, check out the [demo](https://vimeo.com/301644105) on vimeo.
Install
-------
Make sure outer nuke_node_linker folder is your nuke nuke.pluginPath
Add some variation of the following lines to your menu.py.from nuke_node_linker import controller_create_link, controller_add_link
from nuke_node_linker import model as node_linker_modelmenu = nuke.menu('Nodes').addMenu("custom")
menu.addCommand("Node Linker/NodeLinker add Link", "controller_add_link.start()", "ctrl+shift+tab")
menu.addCommand("Node Linker/NodeLinker get Link", "controller_create_link.start()", "shift+tab")
menu.addCommand("Node Linker/NodeLinker reconnect", "node_linker_model.reconnect_links()")