├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── fonts └── Inter.ttf ├── images └── preview.svg ├── old └── main.py ├── test ├── fbx_import_test.py ├── listing_category.py ├── panel_ui.py ├── scraper01.py ├── scraper02.py └── scraper_simple.py └── tools ├── asset_importer.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/__init__.py -------------------------------------------------------------------------------- /fonts/Inter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/fonts/Inter.ttf -------------------------------------------------------------------------------- /images/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/images/preview.svg -------------------------------------------------------------------------------- /old/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/old/main.py -------------------------------------------------------------------------------- /test/fbx_import_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/test/fbx_import_test.py -------------------------------------------------------------------------------- /test/listing_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/test/listing_category.py -------------------------------------------------------------------------------- /test/panel_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/test/panel_ui.py -------------------------------------------------------------------------------- /test/scraper01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/test/scraper01.py -------------------------------------------------------------------------------- /test/scraper02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/test/scraper02.py -------------------------------------------------------------------------------- /test/scraper_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/test/scraper_simple.py -------------------------------------------------------------------------------- /tools/asset_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/tools/asset_importer.py -------------------------------------------------------------------------------- /tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgmaterial/fab-to-blender/HEAD/tools/utils.py --------------------------------------------------------------------------------