From ec1ab249c38ff13d7eec3bd71e98eafcc7df62d0 Mon Sep 17 00:00:00 2001 From: Amine Bensalem Date: Fri, 6 Oct 2023 16:13:05 +0100 Subject: [PATCH 1/2] Fix issue #113340 : Fixed typo on the Points node's socket output name --- source/blender/nodes/geometry/nodes/node_geo_points.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/nodes/geometry/nodes/node_geo_points.cc b/source/blender/nodes/geometry/nodes/node_geo_points.cc index fb5e2c49ef5..8185f4d6a7a 100644 --- a/source/blender/nodes/geometry/nodes/node_geo_points.cc +++ b/source/blender/nodes/geometry/nodes/node_geo_points.cc @@ -27,7 +27,7 @@ static void node_declare(NodeDeclarationBuilder &b) .supports_field() .subtype(PROP_DISTANCE) .description("The radii of the new points"); - b.add_output("Geometry"); + b.add_output("Points"); } class PointsFieldContext : public FieldContext { -- 2.30.2 From 3f87fff83960d8a1f9c643904e0875e8f2d256c9 Mon Sep 17 00:00:00 2001 From: Amine Bensalem Date: Sat, 7 Oct 2023 02:34:02 +0100 Subject: [PATCH 2/2] Fix issue #113340 : Renamed output socket to 'Points' in the Points geometry node --- source/blender/nodes/geometry/nodes/node_geo_points.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/nodes/geometry/nodes/node_geo_points.cc b/source/blender/nodes/geometry/nodes/node_geo_points.cc index 8185f4d6a7a..2c48fb4bcba 100644 --- a/source/blender/nodes/geometry/nodes/node_geo_points.cc +++ b/source/blender/nodes/geometry/nodes/node_geo_points.cc @@ -27,7 +27,7 @@ static void node_declare(NodeDeclarationBuilder &b) .supports_field() .subtype(PROP_DISTANCE) .description("The radii of the new points"); - b.add_output("Points"); + b.add_output("Points" , "Geometry"); } class PointsFieldContext : public FieldContext { -- 2.30.2