Geometry Nodes: remove warning in Points node

Generating no points in some frames is a perfectly valid use case.
This commit is contained in:
Jacques Lucke 2022-07-01 10:04:35 +02:00
parent 5d57d9f899
commit eff62ea8ab
1 changed files with 0 additions and 1 deletions

View File

@ -62,7 +62,6 @@ static void node_geo_exec(GeoNodeExecParams params)
{
const int count = params.extract_input<int>("Count");
if (count <= 0) {
params.error_message_add(NodeWarningType::Warning, TIP_("Point count should be at least 1"));
params.set_default_remaining_outputs();
return;
}