See #5087. See #5114. Skip trying to test shapes that obviously don't have a representation to prevent false positives

This commit is contained in:
Dion Moult
2024-08-05 14:18:54 +10:00
parent 253dca730d
commit bce71f3797
@@ -190,6 +190,8 @@ class CreateAllShapes(bpy.types.Operator):
for i, element in enumerate(elements, 1):
if element.GlobalId in excludes:
continue
if not element.Representation:
continue
print(f"{i}/{total}:", element)
start = time.time()
shape = None