[Bf-blender-cvs] [b3b00be34ed] master: UI: Simplify description for geometry node socket

Hans Goudey noreply at git.blender.org
Fri Nov 18 20:43:20 CET 2022


Commit: b3b00be34edf0923aab7899b83a632246fde9dc6
Author: Hans Goudey
Date:   Fri Nov 18 11:48:10 2022 -0600
Branches: master
https://developer.blender.org/rBb3b00be34edf0923aab7899b83a632246fde9dc6

UI: Simplify description for geometry node socket

Simplify wording of "Output true" to a noun.

===================================================================

M	source/blender/nodes/geometry/nodes/node_geo_offset_point_in_curve.cc

===================================================================

diff --git a/source/blender/nodes/geometry/nodes/node_geo_offset_point_in_curve.cc b/source/blender/nodes/geometry/nodes/node_geo_offset_point_in_curve.cc
index d71e27e0385..52a73cfdb25 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_offset_point_in_curve.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_offset_point_in_curve.cc
@@ -35,8 +35,8 @@ static void node_declare(NodeDeclarationBuilder &b)
       .description(N_("The number of control points along the curve to traverse"));
   b.add_output<decl::Bool>(N_("Is Valid Offset"))
       .dependent_field()
-      .description(N_("Outputs true if the evaluated control point plus the offset "
-                      "is a valid index of the original curve"));
+      .description(N_("Whether the input control point plus the offset is a valid index of the "
+                      "original curve"));
   b.add_output<decl::Int>(N_("Point Index"))
       .dependent_field()
       .description(N_("The index of the control point plus the offset within the entire "



More information about the Bf-blender-cvs mailing list