File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# UnityAsset.NET
22
3- A .NET library for reading and modifying Unity assets and bundles.
3+ A .NET library for reading and modifying Unity assets and bundles.
4+
5+ ## Features
6+
7+ For now, it can only do a few simple things in the outer layer of the bundlefile
8+
9+ - Read and write uncompressed/lz4-compressed/lzma-compressed Unity bundlefile
10+ - Handling UnityCN encryption
11+ - Calculate and fix the CRC32 value of bundlefile
12+
13+ ## Acknowledgements
14+
15+ This project uses code from the following open source projects:
16+
17+ - [ Studio] ( https://github.com/RazTools/Studio ) by Razmoth: Modded AssetStudio with new features.
18+ - [ AssetStudio] ( https://github.com/aelurum/AssetStudio ) by aelurum: modified version of Perfare's AssetStudio.
19+
20+ We are grateful to the developers of these projects for their work.
Original file line number Diff line number Diff line change 11
22Microsoft Visual Studio Solution File, Format Version 12.00
3- Project ("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}" ) = "UnityAsset.NET" , "UnityAsset.NET\UnityAsset.NET.csproj" , "{B83CD1B5-07A2-4DB7-92C2-AD1D692945DE}"
3+ # Visual Studio Version 17
4+ VisualStudioVersion = 17.9.34607.119
5+ MinimumVisualStudioVersion = 10.0.40219.1
6+ Project ("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}" ) = "UnityAsset.NET" , "UnityAsset.NET\UnityAsset.NET.csproj" , "{B83CD1B5-07A2-4DB7-92C2-AD1D692945DE}"
47EndProject
5- Project ("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC }" ) = "Test" , "Test\Test.csproj" , "{3B0C7B83-05AC-41A2-BFD2-9B7CDD4547EA}"
8+ Project ("{9A19103F-16F7-4668-BE54-9A1E7A4F7556 }" ) = "Test" , "Test\Test.csproj" , "{3B0C7B83-05AC-41A2-BFD2-9B7CDD4547EA}"
69EndProject
710Global
811 GlobalSection (SolutionConfigurationPlatforms ) = preSolution
1922 {3B0C7B83-05AC-41A2-BFD2-9B7CDD4547EA} .Release| Any CPU .ActiveCfg = Release| Any CPU
2023 {3B0C7B83-05AC-41A2-BFD2-9B7CDD4547EA} .Release| Any CPU .Build .0 = Release| Any CPU
2124 EndGlobalSection
25+ GlobalSection (SolutionProperties ) = preSolution
26+ HideSolutionNode = FALSE
27+ EndGlobalSection
2228EndGlobal
Original file line number Diff line number Diff line change 44 <TargetFramework >net8.0</TargetFramework >
55 <ImplicitUsings >enable</ImplicitUsings >
66 <Nullable >enable</Nullable >
7+ <Authors >AXiX</Authors >
8+ <Description >A .NET library for reading and modifying Unity assets and bundles.</Description >
9+ <Version >0.0.1</Version >
10+ <Title >UnityAsset.NET</Title >
11+ <Copyright >AXiX</Copyright >
12+ <PackageProjectUrl >https://github.com/AXiX-official/UnityAsset.NET</PackageProjectUrl >
13+ <RepositoryUrl >https://github.com/AXiX-official/UnityAsset.NET</RepositoryUrl >
14+ <PackageRequireLicenseAcceptance >true</PackageRequireLicenseAcceptance >
15+ <AssemblyVersion >0.0.1</AssemblyVersion >
16+ <FileVersion >0.0.1</FileVersion >
17+ <GeneratePackageOnBuild >True</GeneratePackageOnBuild >
18+ <PackageReadmeFile >README.md</PackageReadmeFile >
19+ <PackageTags >Unity</PackageTags >
20+ <PackAsTool >True</PackAsTool >
21+ <PackageLicenseFile >LICENSE</PackageLicenseFile >
722 </PropertyGroup >
823
24+ <ItemGroup >
25+ <None Include =" ..\LICENSE" >
26+ <Pack >True</Pack >
27+ <PackagePath >\</PackagePath >
28+ </None >
29+ <None Include =" ..\README.md" >
30+ <Pack >True</Pack >
31+ <PackagePath >\</PackagePath >
32+ </None >
33+ </ItemGroup >
34+
935 <ItemGroup >
1036 <PackageReference Include =" K4os.Compression.LZ4" Version =" 1.3.8" />
1137 <PackageReference Include =" LZ4Codec" Version =" 2023.6.1" />
You can’t perform that action at this time.
0 commit comments