[Bf-blender-cvs] [fcf1ba18f0c] blender-v3.0-release: Fix: Incorrect component type warning in points to volume node

Hans Goudey noreply at git.blender.org
Fri Oct 29 20:18:24 CEST 2021


Commit: fcf1ba18f0c41187bc7e34e1cdba8d59970a632c
Author: Hans Goudey
Date:   Fri Oct 29 13:17:33 2021 -0500
Branches: blender-v3.0-release
https://developer.blender.org/rBfcf1ba18f0c41187bc7e34e1cdba8d59970a632c

Fix: Incorrect component type warning in points to volume node

This node doesn't only support point clouds, it supports any geometry
component type with points, so meshes, curves, and point clouds.
We could explicitly list them to add a warning for volumes, but
that wouldn't really have any practical benefit, and isn't done
elsewhere.

===================================================================

M	source/blender/nodes/geometry/nodes/node_geo_points_to_volume.cc

===================================================================

diff --git a/source/blender/nodes/geometry/nodes/node_geo_points_to_volume.cc b/source/blender/nodes/geometry/nodes/node_geo_points_to_volume.cc
index fcd82170a8a..312ea7df919 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_points_to_volume.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_points_to_volume.cc
@@ -32,7 +32,7 @@ namespace blender::nodes {
 
 static void geo_node_points_to_volume_declare(NodeDeclarationBuilder &b)
 {
-  b.add_input<decl::Geometry>(N_("Points")).supported_type(GEO_COMPONENT_TYPE_POINT_CLOUD);
+  b.add_input<decl::Geometry>(N_("Points"));
   b.add_input<decl::Float>(N_("Density")).default_value(1.0f).min(0.0f);
   b.add_input<decl::Float>(N_("Voxel Size")).default_value(0.3f).min(0.01f).subtype(PROP_DISTANCE);
   b.add_input<decl::Float>(N_("Voxel Amount")).default_value(64.0f).min(0.0f);



More information about the Bf-blender-cvs mailing list