Moved files to named subfolder for easier packaging

This commit is contained in:
Colin Basnett
2024-02-28 18:50:12 -08:00
parent a3e350e96e
commit ecfd9897b1
5 changed files with 4 additions and 4 deletions

View File

@@ -1,11 +1,11 @@
import bpy from bpy_extras.io_utils import ExportHelper
import bpy_extras from bpy.props import StringProperty, EnumProperty, BoolProperty
from bpy.props import StringProperty, FloatProperty, EnumProperty, BoolProperty from bpy.types import Operator
from .builder import * from .builder import *
from .writer 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_idname = 'io_scene_ase.ase_export' # important since its how bpy.ops.import_test.some_data is constructed
bl_label = 'Export ASE' bl_label = 'Export ASE'
bl_space_type = 'PROPERTIES' bl_space_type = 'PROPERTIES'