Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
StanleySweet authored Aug 4, 2024
1 parent 4ceaef5 commit 69a1357
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions io_scene_pyrogenesis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
import bpy
from . import ImportPyrogenesisActor

# 'https://blender.stackexchange.com/questions/39303/blender-script-import-model-and-render-it'
#
# Script reloading (if the user calls 'Reload Scripts' from Blender)
#


def reload_package(module_dict_main):
import importlib
Expand Down Expand Up @@ -39,16 +34,12 @@ def menu_func_import(self, context):


def register():
# bpy.utils.register_module(__name__)
bpy.utils.register_class(ImportPyrogenesisActor)
# add to the export / import menu
bpy.types.TOPBAR_MT_file_import.append(menu_func_import)


def unregister():
# bpy.utils.unregister_module(__name__)
bpy.utils.unregister_class(ImportPyrogenesisActor)
# remove from the export / import menu
bpy.types.TOPBAR_MT_file_import.remove(menu_func_import)


Expand Down

0 comments on commit 69a1357

Please sign in to comment.