├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug---error-report.md └── workflows │ ├── codeql-analysis.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── UnityPy ├── UnityPyBoost.pyi ├── __init__.py ├── __main__.py ├── classes │ ├── ClassIDTypeToClassMap.py │ ├── Object.py │ ├── PPtr.py │ ├── UnknownObject.py │ ├── __init__.py │ ├── generated.py │ ├── legacy_patch │ │ ├── AudioClip.py │ │ ├── AudioClip.pyi │ │ ├── GameObject.py │ │ ├── GameObject.pyi │ │ ├── Mesh.py │ │ ├── Mesh.pyi │ │ ├── Renderer.py │ │ ├── Renderer.pyi │ │ ├── Shader.py │ │ ├── Shader.pyi │ │ ├── Sprite.py │ │ ├── Sprite.pyi │ │ ├── Texture2D.py │ │ ├── Texture2D.pyi │ │ ├── Texture2DArray.py │ │ ├── Texture2DArray.pyi │ │ └── __init__.py │ └── math.py ├── cli │ ├── __init__.py │ └── update_tpk.py ├── config.py ├── enums │ ├── Audio.py │ ├── BuildTarget.py │ ├── BundleFile.py │ ├── ClassIDType.py │ ├── CommonString.py │ ├── ExtendableEnum.py │ ├── FileType.py │ ├── GfxPrimitiveType.py │ ├── GraphicsFormat.py │ ├── MeshTopology.py │ ├── PassType.py │ ├── SerializedPropertyType.py │ ├── ShaderCompilerPlatform.py │ ├── ShaderGpuProgramType.py │ ├── SpriteMeshType.py │ ├── SpritePackingMode.py │ ├── SpritePackingRotation.py │ ├── TextureDimension.py │ ├── TextureFormat.py │ ├── VertexFormat.py │ └── __init__.py ├── environment.py ├── exceptions.py ├── export │ ├── AudioClipConverter.py │ ├── MeshExporter.py │ ├── MeshRendererExporter.py │ ├── ShaderConverter.py │ ├── SpriteHelper.py │ ├── Texture2DConverter.py │ └── __init__.py ├── files │ ├── BundleFile.py │ ├── File.py │ ├── ObjectReader.py │ ├── SerializedFile.py │ ├── WebFile.py │ └── __init__.py ├── helpers │ ├── ArchiveStorageManager.py │ ├── CompressionHelper.py │ ├── ContainerHelper.py │ ├── ImportHelper.py │ ├── MeshHelper.py │ ├── PackedBitVector.py │ ├── ResourceReader.py │ ├── TextureSwizzler.py │ ├── Tpk.py │ ├── TypeTreeGenerator.py │ ├── TypeTreeHelper.py │ ├── TypeTreeNode.py │ ├── UnityVersion.py │ └── __init__.py ├── py.typed ├── resources │ ├── __init__.py │ └── uncompressed.tpk ├── streams │ ├── EndianBinaryReader.py │ ├── EndianBinaryWriter.py │ └── __init__.py └── tools │ ├── __init__.py │ └── extractor.py ├── UnityPyBoost ├── ArchiveStorageDecryptor.cpp ├── ArchiveStorageDecryptor.hpp ├── Mesh.cpp ├── Mesh.hpp ├── ReadMe.md ├── TypeTreeHelper.cpp ├── TypeTreeHelper.hpp ├── UnityPyBoost.cpp └── swap.hpp ├── _config.yml ├── generators └── ClassesGenerator.py ├── pyproject.toml ├── ruff.toml ├── setup.py └── tests ├── samples ├── atlas_test ├── banner_1 ├── char_118_yuki.ab ├── xinzexi_2_n_tex └── xinzexi_2_n_tex_mesh ├── test_UnityVersion.py ├── test_extractor.py ├── test_main.py └── test_typetree.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: K0lb3 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug---error-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/.github/ISSUE_TEMPLATE/bug---error-report.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/README.md -------------------------------------------------------------------------------- /UnityPy/UnityPyBoost.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/UnityPyBoost.pyi -------------------------------------------------------------------------------- /UnityPy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/__init__.py -------------------------------------------------------------------------------- /UnityPy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/__main__.py -------------------------------------------------------------------------------- /UnityPy/classes/ClassIDTypeToClassMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/ClassIDTypeToClassMap.py -------------------------------------------------------------------------------- /UnityPy/classes/Object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/Object.py -------------------------------------------------------------------------------- /UnityPy/classes/PPtr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/PPtr.py -------------------------------------------------------------------------------- /UnityPy/classes/UnknownObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/UnknownObject.py -------------------------------------------------------------------------------- /UnityPy/classes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/__init__.py -------------------------------------------------------------------------------- /UnityPy/classes/generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/generated.py -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/AudioClip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/AudioClip.py -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/AudioClip.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/AudioClip.pyi -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/GameObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/GameObject.py -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/GameObject.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/GameObject.pyi -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/Mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/Mesh.py -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/Mesh.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/Mesh.pyi -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/Renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/Renderer.py -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/Renderer.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/Renderer.pyi -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/Shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/Shader.py -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/Shader.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/Shader.pyi -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/Sprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/Sprite.py -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/Sprite.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/Sprite.pyi -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/Texture2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/Texture2D.py -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/Texture2D.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/Texture2D.pyi -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/Texture2DArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/Texture2DArray.py -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/Texture2DArray.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/Texture2DArray.pyi -------------------------------------------------------------------------------- /UnityPy/classes/legacy_patch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/legacy_patch/__init__.py -------------------------------------------------------------------------------- /UnityPy/classes/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/classes/math.py -------------------------------------------------------------------------------- /UnityPy/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/cli/__init__.py -------------------------------------------------------------------------------- /UnityPy/cli/update_tpk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/cli/update_tpk.py -------------------------------------------------------------------------------- /UnityPy/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/config.py -------------------------------------------------------------------------------- /UnityPy/enums/Audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/Audio.py -------------------------------------------------------------------------------- /UnityPy/enums/BuildTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/BuildTarget.py -------------------------------------------------------------------------------- /UnityPy/enums/BundleFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/BundleFile.py -------------------------------------------------------------------------------- /UnityPy/enums/ClassIDType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/ClassIDType.py -------------------------------------------------------------------------------- /UnityPy/enums/CommonString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/CommonString.py -------------------------------------------------------------------------------- /UnityPy/enums/ExtendableEnum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/ExtendableEnum.py -------------------------------------------------------------------------------- /UnityPy/enums/FileType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/FileType.py -------------------------------------------------------------------------------- /UnityPy/enums/GfxPrimitiveType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/GfxPrimitiveType.py -------------------------------------------------------------------------------- /UnityPy/enums/GraphicsFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/GraphicsFormat.py -------------------------------------------------------------------------------- /UnityPy/enums/MeshTopology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/MeshTopology.py -------------------------------------------------------------------------------- /UnityPy/enums/PassType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/PassType.py -------------------------------------------------------------------------------- /UnityPy/enums/SerializedPropertyType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/SerializedPropertyType.py -------------------------------------------------------------------------------- /UnityPy/enums/ShaderCompilerPlatform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/ShaderCompilerPlatform.py -------------------------------------------------------------------------------- /UnityPy/enums/ShaderGpuProgramType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/ShaderGpuProgramType.py -------------------------------------------------------------------------------- /UnityPy/enums/SpriteMeshType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/SpriteMeshType.py -------------------------------------------------------------------------------- /UnityPy/enums/SpritePackingMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/SpritePackingMode.py -------------------------------------------------------------------------------- /UnityPy/enums/SpritePackingRotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/SpritePackingRotation.py -------------------------------------------------------------------------------- /UnityPy/enums/TextureDimension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/TextureDimension.py -------------------------------------------------------------------------------- /UnityPy/enums/TextureFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/TextureFormat.py -------------------------------------------------------------------------------- /UnityPy/enums/VertexFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/VertexFormat.py -------------------------------------------------------------------------------- /UnityPy/enums/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/enums/__init__.py -------------------------------------------------------------------------------- /UnityPy/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/environment.py -------------------------------------------------------------------------------- /UnityPy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/exceptions.py -------------------------------------------------------------------------------- /UnityPy/export/AudioClipConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/export/AudioClipConverter.py -------------------------------------------------------------------------------- /UnityPy/export/MeshExporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/export/MeshExporter.py -------------------------------------------------------------------------------- /UnityPy/export/MeshRendererExporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/export/MeshRendererExporter.py -------------------------------------------------------------------------------- /UnityPy/export/ShaderConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/export/ShaderConverter.py -------------------------------------------------------------------------------- /UnityPy/export/SpriteHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/export/SpriteHelper.py -------------------------------------------------------------------------------- /UnityPy/export/Texture2DConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/export/Texture2DConverter.py -------------------------------------------------------------------------------- /UnityPy/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/export/__init__.py -------------------------------------------------------------------------------- /UnityPy/files/BundleFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/files/BundleFile.py -------------------------------------------------------------------------------- /UnityPy/files/File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/files/File.py -------------------------------------------------------------------------------- /UnityPy/files/ObjectReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/files/ObjectReader.py -------------------------------------------------------------------------------- /UnityPy/files/SerializedFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/files/SerializedFile.py -------------------------------------------------------------------------------- /UnityPy/files/WebFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/files/WebFile.py -------------------------------------------------------------------------------- /UnityPy/files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/files/__init__.py -------------------------------------------------------------------------------- /UnityPy/helpers/ArchiveStorageManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/ArchiveStorageManager.py -------------------------------------------------------------------------------- /UnityPy/helpers/CompressionHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/CompressionHelper.py -------------------------------------------------------------------------------- /UnityPy/helpers/ContainerHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/ContainerHelper.py -------------------------------------------------------------------------------- /UnityPy/helpers/ImportHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/ImportHelper.py -------------------------------------------------------------------------------- /UnityPy/helpers/MeshHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/MeshHelper.py -------------------------------------------------------------------------------- /UnityPy/helpers/PackedBitVector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/PackedBitVector.py -------------------------------------------------------------------------------- /UnityPy/helpers/ResourceReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/ResourceReader.py -------------------------------------------------------------------------------- /UnityPy/helpers/TextureSwizzler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/TextureSwizzler.py -------------------------------------------------------------------------------- /UnityPy/helpers/Tpk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/Tpk.py -------------------------------------------------------------------------------- /UnityPy/helpers/TypeTreeGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/TypeTreeGenerator.py -------------------------------------------------------------------------------- /UnityPy/helpers/TypeTreeHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/TypeTreeHelper.py -------------------------------------------------------------------------------- /UnityPy/helpers/TypeTreeNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/TypeTreeNode.py -------------------------------------------------------------------------------- /UnityPy/helpers/UnityVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/UnityVersion.py -------------------------------------------------------------------------------- /UnityPy/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/helpers/__init__.py -------------------------------------------------------------------------------- /UnityPy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityPy/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityPy/resources/uncompressed.tpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/resources/uncompressed.tpk -------------------------------------------------------------------------------- /UnityPy/streams/EndianBinaryReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/streams/EndianBinaryReader.py -------------------------------------------------------------------------------- /UnityPy/streams/EndianBinaryWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/streams/EndianBinaryWriter.py -------------------------------------------------------------------------------- /UnityPy/streams/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/streams/__init__.py -------------------------------------------------------------------------------- /UnityPy/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnityPy/tools/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPy/tools/extractor.py -------------------------------------------------------------------------------- /UnityPyBoost/ArchiveStorageDecryptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPyBoost/ArchiveStorageDecryptor.cpp -------------------------------------------------------------------------------- /UnityPyBoost/ArchiveStorageDecryptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPyBoost/ArchiveStorageDecryptor.hpp -------------------------------------------------------------------------------- /UnityPyBoost/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPyBoost/Mesh.cpp -------------------------------------------------------------------------------- /UnityPyBoost/Mesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPyBoost/Mesh.hpp -------------------------------------------------------------------------------- /UnityPyBoost/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPyBoost/ReadMe.md -------------------------------------------------------------------------------- /UnityPyBoost/TypeTreeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPyBoost/TypeTreeHelper.cpp -------------------------------------------------------------------------------- /UnityPyBoost/TypeTreeHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPyBoost/TypeTreeHelper.hpp -------------------------------------------------------------------------------- /UnityPyBoost/UnityPyBoost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPyBoost/UnityPyBoost.cpp -------------------------------------------------------------------------------- /UnityPyBoost/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/UnityPyBoost/swap.hpp -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/_config.yml -------------------------------------------------------------------------------- /generators/ClassesGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/generators/ClassesGenerator.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/ruff.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/samples/atlas_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/tests/samples/atlas_test -------------------------------------------------------------------------------- /tests/samples/banner_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/tests/samples/banner_1 -------------------------------------------------------------------------------- /tests/samples/char_118_yuki.ab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/tests/samples/char_118_yuki.ab -------------------------------------------------------------------------------- /tests/samples/xinzexi_2_n_tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/tests/samples/xinzexi_2_n_tex -------------------------------------------------------------------------------- /tests/samples/xinzexi_2_n_tex_mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/tests/samples/xinzexi_2_n_tex_mesh -------------------------------------------------------------------------------- /tests/test_UnityVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/tests/test_UnityVersion.py -------------------------------------------------------------------------------- /tests/test_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/tests/test_extractor.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_typetree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K0lb3/UnityPy/HEAD/tests/test_typetree.py --------------------------------------------------------------------------------