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
Copy file name to clipboardExpand all lines: scripts/LowLevelPluginManager.cs
+3-10Lines changed: 3 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -23,12 +23,10 @@ public static void Initialize()
23
23
if(_unityInterfacePtr==IntPtr.Zero)
24
24
thrownewException($"{nameof(GetUnityInterfacesPtr)} returned null");
25
25
}
26
-
catch(DllNotFoundExceptionex)
26
+
catch(DllNotFoundException)
27
27
{
28
-
Debug.Log(ex);
28
+
Debug.LogWarning("Stub native plugin not found. Low level native callback won't fire. If you didn't install this tool via Unity package, you'll need to build it manually ");
29
29
}
30
-
31
-
Debug.Log("Initialize()");
32
30
}
33
31
34
32
publicstaticvoidOnDllLoaded(NativeDlldll)
@@ -44,10 +42,7 @@ public static void OnDllLoaded(NativeDll dll)
0 commit comments