Mesh: Replace auto smooth with node group #108014

Merged
Hans Goudey merged 149 commits from HooglyBoogly/blender:refactor-mesh-corner-normals-lazy into main 2023-10-20 16:54:20 +02:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 5e759bf241 - Show all commits

View File

@ -828,7 +828,7 @@ static void mesh_edges_sharp_tag(const OffsetIndices<int> faces,
/* We want to avoid tagging edges as sharp when it is already defined as such by
* other causes than angle threshold. */
if (!r_sharp_edges.is_empty() && is_angle_sharp) {
if (is_angle_sharp) {
r_sharp_edges[edge_i] = true;
}
}