From 1feea05092dccb7cfdd49401e465343d92541bd7 Mon Sep 17 00:00:00 2001 From: Colin Basnett Date: Sat, 6 Feb 2021 00:25:00 -0800 Subject: [PATCH] Clean up for release --- src/__init__.py | 10 +++------- src/writer.py | 1 - 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/src/__init__.py b/src/__init__.py index 46a9195..ecc0f3e 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,13 +1,13 @@ bl_info = { 'name': 'ASCII Scene Export', 'description': 'Export ASE (ASCII Scene Export) files', - 'author': 'Colin Basnett (Darklight Games', + 'author': 'Colin Basnett (Darklight Games)', 'version': (1, 0, 0), 'blender': (2, 90, 0), 'location': 'File > Import-Export', 'warning': 'This add-on is under development.', - 'wiki_url': 'https://github.com/cmbasnett/io_scene_ase/wiki', - 'tracker_url': 'https://github.com/cmbasnett/io_scene_ase/issues', + 'wiki_url': 'https://github.com/DarklightGames/io_scene_ase/wiki', + 'tracker_url': 'https://github.com/DarklightGames/io_scene_ase/issues', 'support': 'COMMUNITY', 'category': 'Import-Export' } @@ -28,10 +28,6 @@ from . import builder from . import writer from . import exporter -icons = [ - # 'lambda', -] - classes = ( exporter.ASE_OT_ExportOperator, ) diff --git a/src/writer.py b/src/writer.py index a5c7f11..0ff3c41 100644 --- a/src/writer.py +++ b/src/writer.py @@ -125,7 +125,6 @@ class ASEWriter(object): for geometry_object in ase.geometry_objects: geomobject_node = root.add_command('GEOMOBJECT') - geomobject_node.push_child('NODE_NAME').push_datum(geometry_object.name) mesh_node = geomobject_node.push_child('MESH')