├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __init__.py ├── data_types.py ├── docs ├── blender.jpg └── unreal.jpg ├── export_datasmith.py └── testing ├── README.md ├── datasmith.prof ├── export_all.ps1 └── test_datasmith_export.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xafbf/blender-datasmith-export/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xafbf/blender-datasmith-export/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xafbf/blender-datasmith-export/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xafbf/blender-datasmith-export/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xafbf/blender-datasmith-export/HEAD/__init__.py -------------------------------------------------------------------------------- /data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xafbf/blender-datasmith-export/HEAD/data_types.py -------------------------------------------------------------------------------- /docs/blender.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xafbf/blender-datasmith-export/HEAD/docs/blender.jpg -------------------------------------------------------------------------------- /docs/unreal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xafbf/blender-datasmith-export/HEAD/docs/unreal.jpg -------------------------------------------------------------------------------- /export_datasmith.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xafbf/blender-datasmith-export/HEAD/export_datasmith.py -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xafbf/blender-datasmith-export/HEAD/testing/README.md -------------------------------------------------------------------------------- /testing/datasmith.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xafbf/blender-datasmith-export/HEAD/testing/datasmith.prof -------------------------------------------------------------------------------- /testing/export_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xafbf/blender-datasmith-export/HEAD/testing/export_all.ps1 -------------------------------------------------------------------------------- /testing/test_datasmith_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xafbf/blender-datasmith-export/HEAD/testing/test_datasmith_export.py --------------------------------------------------------------------------------