Skip to content

Experimental tools and libraries for reading and analyzing Unity data files.

License

Notifications You must be signed in to change notification settings

meifan920209/UnityDataTools

 
 

Repository files navigation

UnityDataTools

The UnityDataTool is a set of command line tools showcasing what can be done with the UnityFileSystemApi native dynamic library. The main purpose of these tools is to analyze the content of Unity data files. You can directly jump here if your goal is to understand how to use the UnityDataTool command-line tool.

The UnityFileSystemApi library is distributed in the Tools folder of the Unity editor (starting in version 2022.1.0a14). For simplicity, it is also included in this repository. The library is backward compatible, which means that it can read data files generated by any previous version of Unity.

What is the purpose of the UnityFileSystemApi native library?

The purpose of the UnityFileSystemApi is to expose the functionalities of the WebExtract and binary2text tools, but in a more flexible way. To fully understand what it means, let's first discuss how Unity generates the data files in a build. The data referenced by the scenes in a build is called the Player Data. It is a set of files called SerializedFiles containing the assets in a platform-specific format. When using AssetBundles or Addressables, things are slightly different. Note that as Addressables are AssetBundles and we'll only use the term AssetBundle in the remaining of this document.

AssetBundles are archive files (similar to zip files) that can be mounted at runtime. They contain SerializedFiles like those in the Player Data, but they include what is called a TypeTree1. The TypeTree is data structure exposing how objects have been serialized, i.e. the name, type and size of their properties. It is used by Unity when loading an AssetBundle that was built with a previous Unity version (so you don't necessarily have to update all AssetBundles after upgrading a project to a newer version of Unity).

The content of a SerializedFile including a TypeTree can be converted to a human-readable format using the binary2text tool that can be found in the Tools folder of Unity. In the case of AssetBundles, the SerializedFiles must first be extracted using the WebExtrac tool that is also in the Tools folder. For the Player Data, there is unfortunately no TypeTree so these tools can't be used2. The text file generated by binary2text can be very useful to diagnose issues with a build, but they are usually very large and difficult to navigate. Because of this, a tool called the AssetBundle Analyzer was created to make it easier to extract useful information from these files in the form of a SQLite database. The AssetBundle Analyzer has been quite successful but it has several issues. It is extremely slow as it runs WebExtract and binary2text on all the AssetBundles of a project and has to parse very large text files. It can also easily fail because the syntax used by binary2text is not standard and can even be impossible to parse in some occasions.

As mentioned earlier, the UnityFileSystemApi has been created to expose WebExtract and binary2text functionalities. This enables the creation of tools that can read Unity data files with TypeTrees. With it, it becomes very easy to create a binary2text-like tool that can output the data in any format or a new faster and simpler AssetBundle Analyzer.

Repository content

The repository contains the following items:

  • UnityFileSystem: source code of a .NET class library exposing the functionalities or the UnityFileSystemApi native library.
  • UnityFileSystem.Tests: test suite for the UnityFileSystem library.
  • UnityFileSystemTestData: the Unity project used to generate the test data.
  • UnityDataTool: a command-line tool providing several features that can be used to analyze the content of Unity data files and using the following libraries.
  • Analyzer: a library exposing functions that can extract key information from Unity data files and dump it into a SQLite database (similar to the AssetBundle Analyzer).
  • TextDumper: a library with functions that can dump SerializedFiles in a human-readable format (similar to binary2text).
  • ReferenceFinder: a library providing functions that can find reference chains from objects to other objects using a database created by the UnityDataAnalyzer

How to build

The projects in this solution require the .NET 5.0 SDK. You can use your favorite IDE to build them. They were tested in Visual Studio on Windows and Rider on Mac.

It is also possible to build the projects from the CLI using this command:

dotnet build -c Release

Disclaimer

This project is provided on an "as-is" basis and is not officially supported by Unity. It is an experimental tool provided as an example of what can be done using the UnityFileSystemApi. You can report bugs and submit pull requests, but there is no guarantee that they will be addressed.


Footnotes:
1: AssetBundles include the TypeTree by default but this can be disabled by using the DisableWriteTypeTree option.
2: With a custom build of Unity, is it possible to generate Player Data files including TypeTrees.

About

Experimental tools and libraries for reading and analyzing Unity data files.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 99.0%
  • ShaderLab 1.0%