├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Source ├── __init__.py ├── _gltf2usd │ ├── __init__.py │ ├── gltf2 │ │ ├── Animation.py │ │ ├── Asset.py │ │ ├── GLTFImage.py │ │ ├── Material.py │ │ ├── Mesh.py │ │ ├── Node.py │ │ ├── Scene.py │ │ ├── Skin.py │ │ └── __init__.py │ ├── gltf2loader.py │ ├── gltf2usdUtils.py │ ├── gltfUsdMaterialHelper.py │ ├── usd_material.py │ └── version.py ├── gltf2usd.py └── tests │ ├── __init__.py │ ├── assets │ └── Start_Walking │ │ ├── Boss_diffuse.png │ │ ├── Start_Walking.gltf │ │ └── buffer.bin │ └── testInitializeGLTFLoader.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/README.md -------------------------------------------------------------------------------- /Source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/_gltf2usd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/_gltf2usd/gltf2/Animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/gltf2/Animation.py -------------------------------------------------------------------------------- /Source/_gltf2usd/gltf2/Asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/gltf2/Asset.py -------------------------------------------------------------------------------- /Source/_gltf2usd/gltf2/GLTFImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/gltf2/GLTFImage.py -------------------------------------------------------------------------------- /Source/_gltf2usd/gltf2/Material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/gltf2/Material.py -------------------------------------------------------------------------------- /Source/_gltf2usd/gltf2/Mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/gltf2/Mesh.py -------------------------------------------------------------------------------- /Source/_gltf2usd/gltf2/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/gltf2/Node.py -------------------------------------------------------------------------------- /Source/_gltf2usd/gltf2/Scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/gltf2/Scene.py -------------------------------------------------------------------------------- /Source/_gltf2usd/gltf2/Skin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/gltf2/Skin.py -------------------------------------------------------------------------------- /Source/_gltf2usd/gltf2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/gltf2/__init__.py -------------------------------------------------------------------------------- /Source/_gltf2usd/gltf2loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/gltf2loader.py -------------------------------------------------------------------------------- /Source/_gltf2usd/gltf2usdUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/gltf2usdUtils.py -------------------------------------------------------------------------------- /Source/_gltf2usd/gltfUsdMaterialHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/gltfUsdMaterialHelper.py -------------------------------------------------------------------------------- /Source/_gltf2usd/usd_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/usd_material.py -------------------------------------------------------------------------------- /Source/_gltf2usd/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/_gltf2usd/version.py -------------------------------------------------------------------------------- /Source/gltf2usd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/gltf2usd.py -------------------------------------------------------------------------------- /Source/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/tests/assets/Start_Walking/Boss_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/tests/assets/Start_Walking/Boss_diffuse.png -------------------------------------------------------------------------------- /Source/tests/assets/Start_Walking/Start_Walking.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/tests/assets/Start_Walking/Start_Walking.gltf -------------------------------------------------------------------------------- /Source/tests/assets/Start_Walking/buffer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/tests/assets/Start_Walking/buffer.bin -------------------------------------------------------------------------------- /Source/tests/testInitializeGLTFLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/Source/tests/testInitializeGLTFLoader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoley/gltf2usd/HEAD/requirements.txt --------------------------------------------------------------------------------