├── .editorconfig ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin ├── unity2yaml └── unityextract ├── setup.cfg ├── setup.py └── unitypack ├── __init__.py ├── asset.py ├── assetbundle.py ├── classes.json ├── engine ├── __init__.py ├── animation.py ├── audio.py ├── component.py ├── font.py ├── mesh.py ├── movie.py ├── object.py ├── particle.py ├── physics.py ├── renderer.py ├── text.py └── texture.py ├── enums.py ├── environment.py ├── exceptions.py ├── export.py ├── object.py ├── resources.py ├── strings.dat ├── structs.dat ├── type.py └── utils.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | env 2 | dist 3 | build 4 | __pycache__ 5 | *.egg-info -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/README.md -------------------------------------------------------------------------------- /bin/unity2yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/bin/unity2yaml -------------------------------------------------------------------------------- /bin/unityextract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/bin/unityextract -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/setup.py -------------------------------------------------------------------------------- /unitypack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/__init__.py -------------------------------------------------------------------------------- /unitypack/asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/asset.py -------------------------------------------------------------------------------- /unitypack/assetbundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/assetbundle.py -------------------------------------------------------------------------------- /unitypack/classes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/classes.json -------------------------------------------------------------------------------- /unitypack/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/engine/__init__.py -------------------------------------------------------------------------------- /unitypack/engine/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/engine/animation.py -------------------------------------------------------------------------------- /unitypack/engine/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/engine/audio.py -------------------------------------------------------------------------------- /unitypack/engine/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/engine/component.py -------------------------------------------------------------------------------- /unitypack/engine/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/engine/font.py -------------------------------------------------------------------------------- /unitypack/engine/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/engine/mesh.py -------------------------------------------------------------------------------- /unitypack/engine/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/engine/movie.py -------------------------------------------------------------------------------- /unitypack/engine/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/engine/object.py -------------------------------------------------------------------------------- /unitypack/engine/particle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/engine/particle.py -------------------------------------------------------------------------------- /unitypack/engine/physics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/engine/physics.py -------------------------------------------------------------------------------- /unitypack/engine/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/engine/renderer.py -------------------------------------------------------------------------------- /unitypack/engine/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/engine/text.py -------------------------------------------------------------------------------- /unitypack/engine/texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/engine/texture.py -------------------------------------------------------------------------------- /unitypack/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/enums.py -------------------------------------------------------------------------------- /unitypack/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/environment.py -------------------------------------------------------------------------------- /unitypack/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/exceptions.py -------------------------------------------------------------------------------- /unitypack/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/export.py -------------------------------------------------------------------------------- /unitypack/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/object.py -------------------------------------------------------------------------------- /unitypack/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/resources.py -------------------------------------------------------------------------------- /unitypack/strings.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/strings.dat -------------------------------------------------------------------------------- /unitypack/structs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/structs.dat -------------------------------------------------------------------------------- /unitypack/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/type.py -------------------------------------------------------------------------------- /unitypack/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearthSim/UnityPack/HEAD/unitypack/utils.py --------------------------------------------------------------------------------