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 b6d68f2345 - Show all commits

View File

@ -470,7 +470,7 @@ static void mesh_calc_modifier_final_normals(const bool sculpt_dyntopo, Mesh *me
if (domain == ATTR_DOMAIN_FACE) {
mesh_final->face_normals();
}
else if (domain == ATTR_DOMAIN_FACE) {
else if (domain == ATTR_DOMAIN_POINT) {
HooglyBoogly marked this conversation as resolved Outdated

Shouldn't this be ATTR_DOMAIN_VERT ?

Shouldn't this be `ATTR_DOMAIN_VERT` ?
mesh_final->vert_normals();
}
}