3 Commits
1.0.1 ... 1.0.2

Author SHA1 Message Date
Colin Basnett
1121b18fcb Incremented version. 2021-08-23 23:24:02 -07:00
Colin Basnett
dcd8c3ea65 Fix for bug #2 (missing unit settings on export in Blender 2.93) 2021-08-23 23:22:37 -07:00
Colin Basnett
283a44aec5 Removed zip file from the repository 🤦 2021-08-13 12:54:05 -07:00
3 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ bl_info = {
'name': 'ASCII Scene Export',
'description': 'Export ASE (ASCII Scene Export) files',
'author': 'Colin Basnett (Darklight Games)',
'version': (1, 0, 1),
'version': (1, 0, 2),
'blender': (2, 90, 0),
'location': 'File > Import-Export',
'warning': 'This add-on is under development.',

View File

@@ -19,7 +19,7 @@ class ASE_OT_ExportOperator(bpy.types.Operator, bpy_extras.io_utils.ExportHelper
maxlen=255, # Max internal buffer length, longer would be hilighted.
)
units = EnumProperty(
units: EnumProperty(
items=(('M', 'Meters', ''),
('U', 'Unreal', '')),
name='Units'

Binary file not shown.