Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2010-01-04 07:26:28 +0300
committerMatt Ebb <matt@mke3.net>2010-01-04 07:26:28 +0300
commit7a67b662bd51dae4ae735060faec30f095e5d1ca (patch)
treec76a964d92775b809e301c88844687aee0140614 /release/scripts
parent3881bb5309a87818b14140c7c6bc88561612adb2 (diff)
* Tweaks for node editor Make Links (F key)
Testing a new method that hopefully will be faster to use than finicky socket selection - now just select multiple nodes and press F - available output sockets on the selected nodes will get automatically connected to the active node. It works for one socket type each time, to avoid getting lots of extra connections when you join up, but as a shortcut you can easily press F again to connect up other socket types. For example, to connect a render layer node (with vector pass) to a vector blur node, select the render layer then the vector blur, and press F three times to connect up the Image, Z and Vector sockets. It now also preferences sockets with the same name to connect up first. There's also another option (ctrl F) which will replace existing input links, rather than only connecting up links to available input sockets. * Also changed socket link knife cut to a more convenient shortcut - Ctrl LMB tweak
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/ui/space_node.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/ui/space_node.py b/release/scripts/ui/space_node.py
index 9cf0a0c5ef3..3dc26f49a6f 100644
--- a/release/scripts/ui/space_node.py
+++ b/release/scripts/ui/space_node.py
@@ -120,6 +120,7 @@ class NODE_MT_node(bpy.types.Menu):
layout.separator()
layout.operator("node.link_make")
+ layout.operator("node.link_make", text="Make and Replace Links").replace=True
layout.separator()
layout.operator("node.group_edit")