We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cb4617 commit 858f1b7Copy full SHA for 858f1b7
Packages/com.unity.inputsystem/InputSystem/InputManager.cs
@@ -2177,6 +2177,9 @@ internal void UninstallGlobals()
2177
InputControlLayout.s_CacheInstance = default;
2178
InputControlLayout.s_CacheInstanceRef = 0;
2179
2180
+ // Invalidate type registrations
2181
+ m_CustomTypesRegistered = false;
2182
+
2183
// Detach from runtime.
2184
if (m_Runtime != null)
2185
{
@@ -2277,7 +2280,6 @@ internal struct AvailableDevice
2277
2280
internal IInputRuntime m_Runtime;
2278
2281
internal InputMetrics m_Metrics;
2279
2282
internal InputSettings m_Settings;
- private Func<bool> m_LazyLoadCustomTypes;
2283
2284
// Extract as booleans (from m_Settings) because feature check is in the hot path
2285
0 commit comments