Geometry Nodes: tweak Volume to Mesh threshold declaration

* Remove the minimum value, because that doesn't make sense in general.
* Add a description.
This commit is contained in:
Jacques Lucke 2022-06-17 13:18:48 +02:00
parent d54eb5ed20
commit 75489b5887
1 changed files with 3 additions and 1 deletions

View File

@ -41,7 +41,9 @@ static void node_declare(NodeDeclarationBuilder &b)
.make_available([](bNode &node) {
node_storage(node).resolution_mode = VOLUME_TO_MESH_RESOLUTION_MODE_VOXEL_AMOUNT;
});
b.add_input<decl::Float>(N_("Threshold")).default_value(0.1f).min(0.0f);
b.add_input<decl::Float>(N_("Threshold"))
.default_value(0.1f)
.description(N_("Values larger than the threshold are inside the generated mesh"));
b.add_input<decl::Float>(N_("Adaptivity")).min(0.0f).max(1.0f).subtype(PROP_FACTOR);
b.add_output<decl::Geometry>(N_("Mesh"));
}