Fix: Missing subtype for Points node position input

This commit is contained in:
Hans Goudey
2025-01-30 14:30:54 -05:00
parent 224dffc41b
commit 8e13b2b048

View File

@@ -16,6 +16,7 @@ static void node_declare(NodeDeclarationBuilder &b)
b.add_input<decl::Int>("Count").default_value(1).min(0).description(
"The number of points to create");
b.add_input<decl::Vector>("Position")
.subtype(PROP_TRANSLATION)
.default_value(float3(0.0f))
.supports_field()
.description("The positions of the new points");