Skip to content

Commit 3810f3d

Browse files
Fix link
1 parent fc37354 commit 3810f3d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Analyzer/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,10 @@ important types like Meshes, Shaders, Texture2D and AnimationClips. For example
186186
File, then rows are added to both the `objects` table and the `meshes` table. The meshes table contains columns that only apply to Mesh objects, for example the number of vertices, indices, bones, and channels. The `mesh_view` is a view that joins the `objects` table with the `meshes` table, so that you can see all the properties of a Mesh object in one place.
187187

188188
Each supported Unity object type follows the same pattern:
189-
* A Handler class in the SQLite/Handlers (e.g. [MeshHandler.cs](./SQLite/Handler/MeshHandler.cs).
190-
* The registration of the handler in the m_Handlers dictionary in [SerializedFileSQLiteWriter.cs](./SQLite/SerializedFileSQLiteWriter.cs).
189+
* A Handler class in the SQLite/Handlers, e.g. [MeshHandler.cs](./SQLite/Handler/MeshHandler.cs).
190+
* The registration of the handler in the m_Handlers dictionary in [SerializedFileSQLiteWriter.cs](./SQLite/Writers/SerializedFileSQLiteWriter.cs).
191191
* SQL statements defining extra tables and views associated with the type, e.g. [Mesh.sql](./SQLite/Resources/Mesh.sql).
192-
* A Reader class that uses RandomAccessReader to read properties from the serialized object. e.g. [Mesh.cs](./SerializedObjects/Mesh.cs).
192+
* A Reader class that uses RandomAccessReader to read properties from the serialized object, e.g. [Mesh.cs](./SerializedObjects/Mesh.cs).
193193

194194
It would be possible to extend the Analyze library to add additional columns for the existing types, or by following the same pattern to add additional types. The [dump](../UnityDataTool/README.md#dump) feature of UnityDataTool is a useful way to see the property names and other details of the serialization for a type. Based on that information, code in the Reader class can use the RandomAccessReader to retrieve those properties to bring them into the SQLite database.
195195

Documentation/analyze-examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This topic gives some examples of using the SQLite output of the UnityDataTools
44

55
The command line arguments to invoke Analyze are documented [here](../UnityDataTool/README.md#analyzeanalyse).
66

7-
The definition of the views, and some internal details about how Analyze is implemented, can be found [here](../Analyzer/README.md).
7+
The definition of the views, and some internal details about how Analyze is implemented, can be found [here](../Analyzer/README.md).
88

99
## Running Queries from the Command line
1010

0 commit comments

Comments
 (0)