From f8e1526fa61b8a79b6514e4f265586732d28280d Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Fri, 23 Apr 2021 12:44:21 +0200 Subject: Fix T87661: Attribute Combine XYZ node can't overwrite existing attribute --- source/blender/nodes/geometry/nodes/node_geo_attribute_combine_xyz.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/nodes/geometry/nodes/node_geo_attribute_combine_xyz.cc b/source/blender/nodes/geometry/nodes/node_geo_attribute_combine_xyz.cc index 69e628267a4..d7ed8b6caf8 100644 --- a/source/blender/nodes/geometry/nodes/node_geo_attribute_combine_xyz.cc +++ b/source/blender/nodes/geometry/nodes/node_geo_attribute_combine_xyz.cc @@ -112,6 +112,7 @@ static void combine_attributes(GeometryComponent &component, const GeoNodeExecPa const float z = attribute_z[i]; attribute_result->set(i, {x, y, z}); } + attribute_result.save(); } static void geo_node_attribute_combine_xyz_exec(GeoNodeExecParams params) -- cgit v1.2.3