CurvesGeometry: Add initial vertex group support #106944

Merged
Falk David merged 24 commits from filedescriptor/blender:curves-deform-verts into main 2023-09-27 10:26:16 +02:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 47e48795b1 - Show all commits

View File

@ -441,7 +441,7 @@ bool BKE_id_supports_vertex_groups(const ID *id)
if (id == nullptr) {
return false;
}
return ELEM(GS(id->name), ID_ME, ID_LT, ID_GD_LEGACY, ID_CV);
return ELEM(GS(id->name), ID_ME, ID_LT, ID_GD_LEGACY);
}
bool BKE_object_supports_vertex_groups(const Object *ob)