[Bf-blender-cvs] [17619ed346d] temp-geometry-nodes-text: Fix typo Curve -> Curves in socket name

Erik noreply at git.blender.org
Thu Oct 28 23:35:18 CEST 2021


Commit: 17619ed346d90623b30d761d50c6c95cdf287153
Author: Erik
Date:   Thu Oct 28 23:34:53 2021 +0200
Branches: temp-geometry-nodes-text
https://developer.blender.org/rB17619ed346d90623b30d761d50c6c95cdf287153

Fix typo Curve -> Curves in socket name

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

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

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

diff --git a/source/blender/nodes/geometry/nodes/node_geo_string_to_curves.cc b/source/blender/nodes/geometry/nodes/node_geo_string_to_curves.cc
index 8523e3bc350..e3301e36279 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_string_to_curves.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_string_to_curves.cc
@@ -44,7 +44,7 @@ static void geo_node_string_to_curves_declare(NodeDeclarationBuilder &b)
   b.add_input<decl::Float>("Line Spacing").default_value(1.0f).min(0.0f).subtype(PROP_DISTANCE);
   b.add_input<decl::Float>("Text Box Width").default_value(0.0f).min(0.0f).subtype(PROP_DISTANCE);
   b.add_input<decl::Float>("Text Box Height").default_value(0.0f).min(0.0f).subtype(PROP_DISTANCE);
-  b.add_output<decl::Geometry>("Curve");
+  b.add_output<decl::Geometry>("Curves");
   b.add_output<decl::String>("Remainder");
   b.add_output<decl::Int>("Line").field_source();
   b.add_output<decl::Vector>("Pivot Point").field_source();



More information about the Bf-blender-cvs mailing list