Merge branch 'blender-v3.6-release'

This commit is contained in:
Philipp Oeser 2023-06-08 10:22:58 +02:00
commit 10b0ed58f8
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ def main():
if name.rpartition(".")[2].isdigit():
continue
if not ob_eval.data.attributes.active_color:
if (not hasattr(ob_eval.data, 'attributes')) or not ob_eval.data.attributes.active_color:
print("Skipping:", name, "(no vertex colors)")
continue