├── .gitignore ├── README.md ├── batch.sh ├── examples └── exterior.glb ├── package.json ├── start.sh ├── usd-from-gltf └── Dockerfile └── usd └── Dockerfile /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/docker-gltf-to-udsz/HEAD/README.md -------------------------------------------------------------------------------- /batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/docker-gltf-to-udsz/HEAD/batch.sh -------------------------------------------------------------------------------- /examples/exterior.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/docker-gltf-to-udsz/HEAD/examples/exterior.glb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/docker-gltf-to-udsz/HEAD/package.json -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/docker-gltf-to-udsz/HEAD/start.sh -------------------------------------------------------------------------------- /usd-from-gltf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/docker-gltf-to-udsz/HEAD/usd-from-gltf/Dockerfile -------------------------------------------------------------------------------- /usd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/docker-gltf-to-udsz/HEAD/usd/Dockerfile --------------------------------------------------------------------------------