Skip to content

Commit aae2623

Browse files
angreerobertdorn83
authored andcommitted
Fix: Add missing using UnityEngine directive
Fixes CS0246 compilation error in Unity 2022.3, Unity 2021.3 Added missing 'using UnityEngine;' for RuntimeInitializeOnLoadMethodAttribute
1 parent c8456b3 commit aae2623

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Runtime/Scripts/Interactivity/Export/CleanUp/TickNodeDeduplicationCleanUp.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System;
22
using System.Linq;
33
using UnityGLTF.Interactivity.Schema;
4+
using UnityEngine;
45

56
namespace UnityGLTF.Interactivity.Export
67
{
@@ -54,4 +55,4 @@ public void OnCleanUp(CleanUpTask task)
5455
}
5556
}
5657
}
57-
}
58+
}

0 commit comments

Comments
 (0)