Share

add_points

Adds points to a points object, such as a particle system. Any properties that target point_component get set to their default value for the new points, but you can use new_collection to initialize them to other values.

Inputs

geometry

A points object.

positions

The array of positions at which to add points.

new_collection

The name of a point collection to which to add the new points. This is optional. If the collection already exists, it is replaced.

properties

A property transfer expression for which properties from the original points to retain. New points will have the default value for that property set. An empty expression will result in a point cloud with only point_position, and * will retain all properties, resized to the new point count.

Outputs

out_geometry

The new points object with the added points.

Was this information helpful?