├── .editorconfig ├── .gitignore ├── .vimrc ├── CONTRIBUTING.UP.md ├── LICENSE ├── README.UP.md ├── README.md ├── bin ├── additem.py ├── addmission.py ├── dump_terrain.py ├── dumpxdt.py ├── ffextract.py ├── list_ab_alt.py ├── list_assetbundle.py ├── list_contents.py ├── proto_extract.py ├── proto_mesh_extract.py ├── replace_mesh.py ├── replace_terrain.py ├── show_gameobject.py ├── unity2yaml.py └── unityextract.py ├── pyproject.toml ├── requirements.txt ├── 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 ├── export.py ├── modding.py ├── object.py ├── resources.py ├── strings.dat ├── structs.dat ├── type.py └── utils.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/.gitignore -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/.vimrc -------------------------------------------------------------------------------- /CONTRIBUTING.UP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/CONTRIBUTING.UP.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.UP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/README.UP.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/README.md -------------------------------------------------------------------------------- /bin/additem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/additem.py -------------------------------------------------------------------------------- /bin/addmission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/addmission.py -------------------------------------------------------------------------------- /bin/dump_terrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/dump_terrain.py -------------------------------------------------------------------------------- /bin/dumpxdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/dumpxdt.py -------------------------------------------------------------------------------- /bin/ffextract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/ffextract.py -------------------------------------------------------------------------------- /bin/list_ab_alt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/list_ab_alt.py -------------------------------------------------------------------------------- /bin/list_assetbundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/list_assetbundle.py -------------------------------------------------------------------------------- /bin/list_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/list_contents.py -------------------------------------------------------------------------------- /bin/proto_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/proto_extract.py -------------------------------------------------------------------------------- /bin/proto_mesh_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/proto_mesh_extract.py -------------------------------------------------------------------------------- /bin/replace_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/replace_mesh.py -------------------------------------------------------------------------------- /bin/replace_terrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/replace_terrain.py -------------------------------------------------------------------------------- /bin/show_gameobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/show_gameobject.py -------------------------------------------------------------------------------- /bin/unity2yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/unity2yaml.py -------------------------------------------------------------------------------- /bin/unityextract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/bin/unityextract.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | fsb5 3 | lz4 4 | tinytag 5 | wand 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/setup.py -------------------------------------------------------------------------------- /unitypack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/__init__.py -------------------------------------------------------------------------------- /unitypack/asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/asset.py -------------------------------------------------------------------------------- /unitypack/assetbundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/assetbundle.py -------------------------------------------------------------------------------- /unitypack/classes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/classes.json -------------------------------------------------------------------------------- /unitypack/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/engine/__init__.py -------------------------------------------------------------------------------- /unitypack/engine/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/engine/animation.py -------------------------------------------------------------------------------- /unitypack/engine/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/engine/audio.py -------------------------------------------------------------------------------- /unitypack/engine/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/engine/component.py -------------------------------------------------------------------------------- /unitypack/engine/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/engine/font.py -------------------------------------------------------------------------------- /unitypack/engine/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/engine/mesh.py -------------------------------------------------------------------------------- /unitypack/engine/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/engine/movie.py -------------------------------------------------------------------------------- /unitypack/engine/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/engine/object.py -------------------------------------------------------------------------------- /unitypack/engine/particle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/engine/particle.py -------------------------------------------------------------------------------- /unitypack/engine/physics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/engine/physics.py -------------------------------------------------------------------------------- /unitypack/engine/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/engine/renderer.py -------------------------------------------------------------------------------- /unitypack/engine/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/engine/text.py -------------------------------------------------------------------------------- /unitypack/engine/texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/engine/texture.py -------------------------------------------------------------------------------- /unitypack/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/enums.py -------------------------------------------------------------------------------- /unitypack/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/environment.py -------------------------------------------------------------------------------- /unitypack/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/export.py -------------------------------------------------------------------------------- /unitypack/modding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/modding.py -------------------------------------------------------------------------------- /unitypack/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/object.py -------------------------------------------------------------------------------- /unitypack/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/resources.py -------------------------------------------------------------------------------- /unitypack/strings.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/strings.dat -------------------------------------------------------------------------------- /unitypack/structs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/structs.dat -------------------------------------------------------------------------------- /unitypack/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/type.py -------------------------------------------------------------------------------- /unitypack/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongresource/UnityPackFF/HEAD/unitypack/utils.py --------------------------------------------------------------------------------