Geometry Nodes: Consistent name for points node geometry output

Fixed geometry node socket output name  for issue #113340 to "Points".

Pull Request: https://projects.blender.org/blender/blender/pulls/113353
This commit is contained in:
Amine Bensalem
2023-11-15 11:31:28 +01:00
committed by Hans Goudey
parent 14eb08c3a5
commit 7010a2ee0e

View File

@@ -25,7 +25,7 @@ static void node_declare(NodeDeclarationBuilder &b)
.subtype(PROP_DISTANCE)
.supports_field()
.description("The radii of the new points");
b.add_output<decl::Geometry>("Geometry");
b.add_output<decl::Geometry>("Points" , "Geometry");
}
class PointsFieldContext : public FieldContext {