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
// If native backends for new input system aren't enabled, ask user whether we should
3608
3606
// enable them (requires restart). We only ask once per session and don't ask when
3609
3607
// running in batch mode.
3608
+
// The warning is delayed to delay call (called a short while after the Asset are loaded, on Inspector update) to make sure it doesn't pop up while the editor is still loading or assets are not fully loaded -
3609
+
// this would cancel the import of large assets that are dependent on the InputSystem package and import it as a dependency.
3610
+
EditorApplication.delayCall+=ShowRestartWarning;
3611
+
3612
+
#if UNITY_INPUT_SYSTEM_PROJECT_WIDE_ACTIONS
3613
+
// Make sure project wide input actions are enabled.
3614
+
// Note that this will always fail if entering play-mode within editor since not yet in play-mode.
0 commit comments