Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-04-23 13:44:21 +0300
committerJacques Lucke <jacques@blender.org>2021-04-23 13:44:21 +0300
commitf8e1526fa61b8a79b6514e4f265586732d28280d (patch)
treee503d56209f4d445d812214737613c54802b57f8
parentffa8563429628fed6e1e7ae14f1de708434ead5f (diff)
Fix T87661: Attribute Combine XYZ node can't overwrite existing attribute
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_attribute_combine_xyz.cc1
1 files changed, 1 insertions, 0 deletions
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)