├── .gitignore ├── DsqFile.py ├── DtsShape.py ├── DtsTypes.py ├── FAQ.md ├── LICENSE ├── README.md ├── __init__.py ├── export_dsq.py ├── export_dts.py ├── import_dsq.py ├── import_dts.py ├── import_sequence.py ├── shared_export.py ├── util.py └── write_report.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | developer.py -------------------------------------------------------------------------------- /DsqFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/DsqFile.py -------------------------------------------------------------------------------- /DtsShape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/DtsShape.py -------------------------------------------------------------------------------- /DtsTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/DtsTypes.py -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/__init__.py -------------------------------------------------------------------------------- /export_dsq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/export_dsq.py -------------------------------------------------------------------------------- /export_dts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/export_dts.py -------------------------------------------------------------------------------- /import_dsq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/import_dsq.py -------------------------------------------------------------------------------- /import_dts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/import_dts.py -------------------------------------------------------------------------------- /import_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/import_sequence.py -------------------------------------------------------------------------------- /shared_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/shared_export.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/util.py -------------------------------------------------------------------------------- /write_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoh/io_scene_dts/HEAD/write_report.py --------------------------------------------------------------------------------