Sculpt: Add global automasking propagation steps #117316

Merged
Hans Goudey merged 8 commits from Sean-Kim/blender:102377-auto-masking into main 2024-01-29 15:39:50 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit bc0b22946d - Show all commits

View File

@ -29,7 +29,7 @@ extern "C" {
/* Blender file format version. */
#define BLENDER_FILE_VERSION BLENDER_VERSION
#define BLENDER_FILE_SUBVERSION 13
#define BLENDER_FILE_SUBVERSION 14
/* Minimum Blender version that supports reading file written with the current
* version. Older Blender versions will test this and cancel loading the file, showing a warning to

View File

@ -2666,7 +2666,7 @@ void blo_do_versions_400(FileData *fd, Library * /*lib*/, Main *bmain)
FOREACH_NODETREE_END;
}
if (!MAIN_VERSION_FILE_ATLEAST(bmain, 401, 13)) {
if (!MAIN_VERSION_FILE_ATLEAST(bmain, 401, 14)) {
if (!DNA_struct_member_exists(
Sean-Kim marked this conversation as resolved Outdated

The DNA_struct_member_exists check can be removed here, it should be redundant with the file subversion bump

The `DNA_struct_member_exists` check can be removed here, it should be redundant with the file subversion bump

Whoops, thought I removed this in the previous commit

Whoops, thought I removed this in the previous commit
fd->filesdna, "Sculpt", "int", "automasking_boundary_edges_propagation_steps"))
{