Nodes: new interactive operator to slide nodes #121981

Open
Jacques Lucke wants to merge 24 commits from JacquesLucke/blender:slide-nodes into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit 4e8beaa47b - Show all commits

View File

@ -2661,6 +2661,9 @@ static Vector<bNode *> find_nodes_to_slide_left(bNodeTree &tree,
/* Find nodes to the left of boundary. */
for (bNode *node : tree.all_nodes()) {
if (node->is_frame()) {
continue;
}
if (final_nodes.contains(node)) {
continue;
}
@ -2723,6 +2726,9 @@ static Vector<bNode *> find_nodes_to_slide_right(bNodeTree &tree,
/* Find nodes to the right of boundary. */
for (bNode *node : tree.all_nodes()) {
if (node->is_frame()) {
continue;
}
if (final_nodes.contains(node)) {
continue;
}