diff --git a/source/blender/nodes/function/nodes/node_fn_rotate_vector.cc b/source/blender/nodes/function/nodes/node_fn_rotate_vector.cc index 15d6b47f0fa..fb1060f5616 100644 --- a/source/blender/nodes/function/nodes/node_fn_rotate_vector.cc +++ b/source/blender/nodes/function/nodes/node_fn_rotate_vector.cc @@ -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("Vector"); + b.add_input("Vector").is_default_link_socket(); b.add_input("Rotation"); b.add_output("Vector"); };