Clean up for release
This commit is contained in:
@@ -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,
|
||||
)
|
||||
|
||||
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user