├── .gitignore ├── README.md ├── ffl ├── FFLiResource.py ├── FFLiResourceShape.py └── FFLiResourceTexture.py ├── fflExtract.py └── utils ├── glbExporter.py └── textureImage.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaames/mii-assets/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaames/mii-assets/HEAD/README.md -------------------------------------------------------------------------------- /ffl/FFLiResource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaames/mii-assets/HEAD/ffl/FFLiResource.py -------------------------------------------------------------------------------- /ffl/FFLiResourceShape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaames/mii-assets/HEAD/ffl/FFLiResourceShape.py -------------------------------------------------------------------------------- /ffl/FFLiResourceTexture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaames/mii-assets/HEAD/ffl/FFLiResourceTexture.py -------------------------------------------------------------------------------- /fflExtract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaames/mii-assets/HEAD/fflExtract.py -------------------------------------------------------------------------------- /utils/glbExporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaames/mii-assets/HEAD/utils/glbExporter.py -------------------------------------------------------------------------------- /utils/textureImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaames/mii-assets/HEAD/utils/textureImage.py --------------------------------------------------------------------------------