Skip to content

Commit

Permalink
Moved files to named subfolder for easier packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbasnett committed Feb 29, 2024
1 parent a3e350e commit ecfd989
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/exporter.py → io_scene_ase/exporter.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import bpy
import bpy_extras
from bpy.props import StringProperty, FloatProperty, EnumProperty, BoolProperty
from bpy_extras.io_utils import ExportHelper
from bpy.props import StringProperty, EnumProperty, BoolProperty
from bpy.types import Operator
from .builder import *
from .writer import *


class ASE_OT_ExportOperator(bpy.types.Operator, bpy_extras.io_utils.ExportHelper):
class ASE_OT_ExportOperator(Operator, ExportHelper):
bl_idname = 'io_scene_ase.ase_export' # important since its how bpy.ops.import_test.some_data is constructed
bl_label = 'Export ASE'
bl_space_type = 'PROPERTIES'
Expand Down
File renamed without changes.

0 comments on commit ecfd989

Please sign in to comment.