Merge branch 'blender-v4.1-release'
This commit is contained in:
@@ -689,7 +689,7 @@ void mesh_select_edge_flush(Mesh &mesh)
|
||||
const VArray<bool> hide_vert = *attributes.lookup_or_default<bool>(
|
||||
".hide_vert", AttrDomain::Point, false);
|
||||
array_utils::copy(
|
||||
*attributes.lookup_or_default<bool>(".select_vert", AttrDomain::Point, false),
|
||||
*attributes.lookup_or_default<bool>(".select_edge", AttrDomain::Point, false),
|
||||
IndexMask::from_bools(hide_vert, memory).complement(hide_vert.index_range(), memory),
|
||||
select_vert.span);
|
||||
}
|
||||
@@ -698,7 +698,7 @@ void mesh_select_edge_flush(Mesh &mesh)
|
||||
const VArray<bool> hide_poly = *attributes.lookup_or_default<bool>(
|
||||
".hide_poly", AttrDomain::Face, false);
|
||||
array_utils::copy(
|
||||
*attributes.lookup_or_default<bool>(".select_vert", AttrDomain::Face, false),
|
||||
*attributes.lookup_or_default<bool>(".select_edge", AttrDomain::Face, false),
|
||||
IndexMask::from_bools(hide_poly, memory).complement(hide_poly.index_range(), memory),
|
||||
select_poly.span);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user