├── LICENSE ├── README.md ├── __init__.py ├── eab_utils ├── __init__.py ├── element.py ├── logger.py ├── manager.py ├── object_dependencies.py └── utils.py ├── import_command.py └── rename_objects.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tilapiatsu/blender-export_as_blend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tilapiatsu/blender-export_as_blend/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tilapiatsu/blender-export_as_blend/HEAD/__init__.py -------------------------------------------------------------------------------- /eab_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eab_utils/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tilapiatsu/blender-export_as_blend/HEAD/eab_utils/element.py -------------------------------------------------------------------------------- /eab_utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tilapiatsu/blender-export_as_blend/HEAD/eab_utils/logger.py -------------------------------------------------------------------------------- /eab_utils/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tilapiatsu/blender-export_as_blend/HEAD/eab_utils/manager.py -------------------------------------------------------------------------------- /eab_utils/object_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tilapiatsu/blender-export_as_blend/HEAD/eab_utils/object_dependencies.py -------------------------------------------------------------------------------- /eab_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tilapiatsu/blender-export_as_blend/HEAD/eab_utils/utils.py -------------------------------------------------------------------------------- /import_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tilapiatsu/blender-export_as_blend/HEAD/import_command.py -------------------------------------------------------------------------------- /rename_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tilapiatsu/blender-export_as_blend/HEAD/rename_objects.py --------------------------------------------------------------------------------