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 5d336ebbdf - Show all commits

View File

@ -861,7 +861,7 @@ static void tag_component_positions_changed(void *owner)
static void tag_component_corner_normals_dirty(void *owner)
{
if (Mesh *mesh = static_cast<Mesh *>(owner)) {
mesh->runtime->corner_normals_dirty = true;
mesh->runtime->corner_normals_cache.tag_dirty();
}
}