Added logic to detect negative object scaling values and accomodate WYSIWYG normals on export

Also added "export collections" operator that exports each viible collection as an ASE
This commit is contained in:
Colin Basnett
2024-05-26 13:47:26 -07:00
parent ecfd9897b1
commit bd90088aed
3 changed files with 96 additions and 8 deletions

View File

@@ -28,11 +28,13 @@ from . import exporter
classes = (
exporter.ASE_OT_ExportOperator,
exporter.ASE_OT_ExportCollections,
)
def menu_func_export(self, context):
self.layout.operator(exporter.ASE_OT_ExportOperator.bl_idname, text='ASCII Scene Export (.ase)')
self.layout.operator(exporter.ASE_OT_ExportCollections.bl_idname, text='ASCII Scene Export Collections (.ase)')
def register():