├── .gitignore ├── LICENSE.txt ├── README.md ├── __init__.py ├── logo.png ├── pack_for_export.py └── placeholder.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketchfab/blender-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketchfab/blender-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketchfab/blender-plugin/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketchfab/blender-plugin/HEAD/__init__.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketchfab/blender-plugin/HEAD/logo.png -------------------------------------------------------------------------------- /pack_for_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketchfab/blender-plugin/HEAD/pack_for_export.py -------------------------------------------------------------------------------- /placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketchfab/blender-plugin/HEAD/placeholder.png --------------------------------------------------------------------------------