Fix bug when loading IFC with unsupported reflectance method (even though we don't fully support them yet)

This commit is contained in:
Dion Moult
2023-11-22 11:00:10 +11:00
parent 85e94d2cfc
commit 94ce8e2c9c
@@ -164,10 +164,10 @@ def update_shading_style(self, context):
REFLECTANCE_METHODS = [
("PHYSICAL", "PHYSICAL", ""),
("FLAT", "FLAT", ""),
# ("METAL", "METAL", ""),
# ("MATT", "MATT", ""),
# ("GLASS", "GLASS", ""),
# ("NOTDEFINED", "NOTDEFINED", ""),
("METAL", "METAL", ""),
("MATT", "MATT", ""),
("GLASS", "GLASS", ""),
("NOTDEFINED", "NOTDEFINED", ""),
]