Geometry Nodes: Change default for mesh to points node

While "Vertices" may be less useful since mesh vertices are already
points, the output is more easily understandable, so it's a better
default.
This commit is contained in:
Hans Goudey 2021-09-30 11:53:48 -05:00
parent 6cff1d6480
commit 827e30bd15
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ static void geo_node_mesh_to_points_init(bNodeTree *UNUSED(tree), bNode *node)
{
NodeGeometryMeshToPoints *data = (NodeGeometryMeshToPoints *)MEM_callocN(
sizeof(NodeGeometryMeshToPoints), __func__);
data->mode = GEO_NODE_MESH_TO_POINTS_FACES;
data->mode = GEO_NODE_MESH_TO_POINTS_VERTICES;
node->storage = data;
}