From a2301b1d9110a16c84b6fcf539f8099d7eb0ae65 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Tue, 25 Jan 2022 00:04:33 -0600 Subject: Geometry Nodes: Add description to curve handle input node The "Relative" input isn't immediately obvious unless one is familar with that naming pattern, so an explicit description may be helpful. --- source/blender/nodes/geometry/nodes/node_geo_input_curve_handles.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'source') diff --git a/source/blender/nodes/geometry/nodes/node_geo_input_curve_handles.cc b/source/blender/nodes/geometry/nodes/node_geo_input_curve_handles.cc index fbf6b521fd8..b1144b58c37 100644 --- a/source/blender/nodes/geometry/nodes/node_geo_input_curve_handles.cc +++ b/source/blender/nodes/geometry/nodes/node_geo_input_curve_handles.cc @@ -22,7 +22,11 @@ namespace blender::nodes::node_geo_input_curve_handles_cc { static void node_declare(NodeDeclarationBuilder &b) { - b.add_input(N_("Relative")).default_value(false).supports_field(); + b.add_input(N_("Relative")) + .default_value(false) + .supports_field() + .description(N_("Output the handle positions relative to the corresponding control point " + "instead of in the local space of the geometry")); b.add_output(N_("Left")).field_source(); b.add_output(N_("Right")).field_source(); } -- cgit v1.2.3