Skip to content

Commit

Permalink
test: 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
atticus-lv committed Dec 18, 2021
1 parent c5baa77 commit 0c446b2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 26 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Super IO (SPIO)",
"author": "Atticus",
"blender": (2, 83, 0),
"version": (1, 2, 9),
"version": (1, 3, 0),
"category": "Import-Export",
"support": "COMMUNITY",
"doc_url": "https://atticus-lv.gitee.io/super_io/#/",
Expand Down
25 changes: 0 additions & 25 deletions utils/asset_helper/ops_asset_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,31 +47,6 @@ def execute(self, context):
return {"FINISHED"}


# class SPIO_OT_material_asset(bpy.types.Operator):
# bl_label = 'Material Asset'
# bl_idname = 'spio.material_asset'
# bl_options = {'UNDO_GROUPED'}
#
# clear:BoolProperty(name = 'Clear',default=False)
#
# def execute(self, context):
# for obj in context.selected_objects:
# for slot in obj.material_slots:
# mat = slot.material
#
# if not self.clear:
# mat.asset_mark()
# mat.asset_generate_preview()
# else:
# mat.asset_clear()
#
# for window in bpy.context.window_manager.windows:
# for area in window.screen.areas:
# area.tag_redraw()
#
# return {"FINISHED"}


def register():
bpy.utils.register_class(SPIO_OT_object_asset)
# bpy.utils.register_class(SPIO_OT_material_asset)
Expand Down

0 comments on commit 0c446b2

Please sign in to comment.