Fix #116435: Rotate Vector node on a link connects wrong sockets #116550

Merged
Jacques Lucke merged 5 commits from PratikPB2123/blender:116435-vector-default into blender-v4.1-release 2024-03-03 00:38:50 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ namespace blender::nodes::node_fn_rotate_vector_cc {
static void node_declare(NodeDeclarationBuilder &b)
{
b.is_function_node();
b.add_input<decl::Vector>("Vector");
b.add_input<decl::Vector>("Vector").is_default_link_socket();
b.add_input<decl::Rotation>("Rotation");
b.add_output<decl::Vector>("Vector");
};