(Unity): adjusted deserialization for '2021.1.3f1' assets.

This commit is contained in:
morkt
2022-05-03 13:40:43 +04:00
parent 911efef9b9
commit 30f3eebde9
6 changed files with 79 additions and 14 deletions

View File

@@ -97,13 +97,13 @@ namespace GameRes.Formats.Unity
internal class StreamingInfo
{
public uint Offset;
public long Offset;
public uint Size;
public string Path;
public void Load (AssetReader reader)
{
Offset = reader.ReadUInt32();
Offset = reader.ReadOffset();
Size = reader.ReadUInt32();
Path = reader.ReadString();
}