Skip to content

Commit 88285a7

Browse files
authored
Merge pull request #24 from Unity-Technologies/fix/sql_writer_gameobject
Fix missing game object parameter on sharedAssets proccesing
2 parents 5f08ccd + 21f847d commit 88285a7

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Analyzer/SQLite/SQLiteWriter.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ public void WriteSerializedFile(string relativePath, string fullPath, string con
199199
if (relativePath.EndsWith(".sharedAssets"))
200200
{
201201
m_AddObjectCommand.Transaction = transaction;
202+
m_AddObjectCommand.Parameters["@game_object"].Value = ""; // There is no asscociated GameObject
202203
m_AddObjectCommand.Parameters["@id"].Value = sceneId;
203204
m_AddObjectCommand.Parameters["@object_id"].Value = 0;
204205
m_AddObjectCommand.Parameters["@serialized_file"].Value = serializedFileId;

0 commit comments

Comments
 (0)