You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Refer to this [documentation](../Analyzer/README.md#How-to-use-the-database) for more information
63
63
about the output database structure.**
64
64
65
-
Note: If a SerializedFile is built without TypeTrees, then the command will not be able to extract information about the contained objects. It will print an error similar to this example, then skip to the next file:
See [this topic](../Documentation/unity-content-format.md) for more information about TypeTrees.
73
65
74
66
### Example Input to the Analyze command
75
67
@@ -104,6 +96,36 @@ For Player builds there is no single -p option that can catch all SerializedFile
104
96
105
97
The `--no-recurse` option can reduce the volume of these warnings.
106
98
99
+
100
+
### Errors when TypeTrees are missing
101
+
102
+
If a SerializedFile is built without TypeTrees, then the Analyze command will not be able to extract information about the contained objects. It will print an error similar to this example, then skip to the next file:
See [this topic](../Documentation/unity-content-format.md) for more information about TypeTrees.
110
+
111
+
### SQL Errors
112
+
113
+
Analyze assumes that it is only examining the result of a single build, or related builds (e.g. a Player build plus an Addressables build). If you try to analyze files from two different versions of the same build then some files will fail during processing with these type of error:
That happens because the exact same object could appear in the more than one AssetBundle or Player build file.
126
+
127
+
In future, support could be added to analyze different versions of the same build into a single database. In the meantime, the [comparing builds](../Documentation/comparing-builds.md) gives some ideas about how to compare two versions of the same AssetBundle by running Analyze more than once.
128
+
107
129
## dump
108
130
109
131
This command dumps the contents of a SerializedFile into a file of the selected format. It currently
0 commit comments