{"id":19121375,"url":"https://github.com/axix-official/unityasset.net","last_synced_at":"2026-03-05T14:06:32.820Z","repository":{"id":240276755,"uuid":"802161793","full_name":"AXiX-official/UnityAsset.NET","owner":"AXiX-official","description":"A work-in-progress .NET library for parsing/serializing/patching Unity Engine asset files.","archived":false,"fork":false,"pushed_at":"2026-02-28T14:55:36.000Z","size":700,"stargazers_count":7,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-02-28T17:53:25.659Z","etag":null,"topics":["unity"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AXiX-official.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-05-17T16:29:59.000Z","updated_at":"2026-02-28T14:53:21.000Z","dependencies_parsed_at":"2024-05-17T18:48:17.542Z","dependency_job_id":"a9f67dbd-0b48-4974-ab5a-116853db69e4","html_url":"https://github.com/AXiX-official/UnityAsset.NET","commit_stats":null,"previous_names":["axix-official/unityasset.net"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/AXiX-official/UnityAsset.NET","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AXiX-official%2FUnityAsset.NET","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AXiX-official%2FUnityAsset.NET/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AXiX-official%2FUnityAsset.NET/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AXiX-official%2FUnityAsset.NET/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AXiX-official","download_url":"https://codeload.github.com/AXiX-official/UnityAsset.NET/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AXiX-official%2FUnityAsset.NET/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30130033,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T12:40:50.676Z","status":"ssl_error","status_checked_at":"2026-03-05T12:39:32.209Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["unity"],"created_at":"2024-11-09T05:16:58.304Z","updated_at":"2026-03-05T14:06:32.798Z","avatar_url":"https://github.com/AXiX-official.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿# UnityAsset.NET\n\n---\n\n[![MIT](https://img.shields.io/github/license/AXiX-official/UnityAsset.NET)](https://github.com/AXiX-official/UnityAsset.NET/master/LICENSE)\n[![NuGet Stats](https://img.shields.io/nuget/v/UnityAsset.NET.svg)](https://www.nuget.org/packages/UnityAsset.NET)\n\nA .NET library undergoing active refactoring, currently focused on high-performance parsing and reading of Unity Engine asset files.\n\nOnly support Unity 2017.x or later.\n\n## Features\n\n---\n\n### BundleFile\n\n- [x] Parsing and Reading\n- [x] Serialization\n- [ ] ~~Patching~~ (Will be re-introduced in a future version)\n- [x] Calculate/Patch crc32\n\n### SerializedFile\n\n- [x] Parsing and Reading\n- [x] Serialization\n- [ ] ~~Patching~~ (Temporarily removed)\n\n### Asset\n\n- [x] Parsing based on TypeTree\n- [ ] ~~Serialization~~ (Temporarily removed)\n- [ ] ~~Patching~~ (Temporarily removed)\n\n## Examples\n\n---\n\n### Unity CN Decryption\n\nTo load `BundleFile` with Unity CN Encryption, there are two ways.\n```csharp\n// Hex string format (32 characters)\nSetting.DefaultUnityCNKey = \"587865636f6472506547616b61326536\";  // Represents \"XxecodrPeGaka2e6\" in hex\nBundleFile bf = new BundleFile( @\"path to your bundlefile\");\n```\nor\n```csharp\n// Plain string format (16 characters)\nBundleFile bf = new BundleFile( @\"path to your bundlefile\", \"XxecodrPeGaka2e6\");\n```\n\n~~To remove Unity CN Encryption form File, you can simply save `BundleFile` without key~~\n```csharp\n// Temporarily removed\nbf.Serialize(@\"path to save file\", CompressionType.Lz4HC, CompressionType.Lz4HC);\n```\n\n### Stripped Version\n\nSome `BundleFile`'s version may be stripped, to load those file you can set a specific version\n```csharp\nSetting.DefaultUnityVerion = \"2020.3.48f1\"\n```\n\n## Roadmap\n\n- [ ] v0.4: Re-architect and re-implement a robust and flexible serialization API.\n- [ ] v0.5: Re-introduce patching capabilities based on the new object model.\n\n## Credits\n\n---\n\nThis project stands on the shoulders of these amazing open-source projects:\n\n- [Studio](https://github.com/RazTools/Studio) by [Razmoth](https://github.com/RazTools)\n- [AssetStudio](https://github.com/aelurum/AssetStudio) by [aelurum](https://github.com/aelurum)\n- [AssetsTools.NET](https://github.com/nesrak1/AssetsTools.NET) by [nesrak1](https://github.com/nesrak1)\n- [UnityPy](https://github.com/K0lb3/UnityPy) by [K0lb3](https://github.com/K0lb3)\n- [RustyAssetBundleEXtractor](https://github.com/UniversalGameExtraction/RustyAssetBundleEXtractor) by [UniversalGameExtraction](https://github.com/UniversalGameExtraction)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faxix-official%2Funityasset.net","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faxix-official%2Funityasset.net","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faxix-official%2Funityasset.net/lists"}