From 95054a59ac7b9da62147e3d8e3b60403a2b92dc0 Mon Sep 17 00:00:00 2001 From: Juris S Date: Thu, 13 Jun 2024 21:13:28 +0100 Subject: [PATCH 1/2] Added `.idea/*` folder to .gitignore Typically this folder and its content shouldn't be tracked by git --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 54c4271c..0e73a570 100644 --- a/.gitignore +++ b/.gitignore @@ -63,6 +63,7 @@ $RECYCLE.BIN/ # Visual Studio Code project .vscode/* +.idea/* example_output/* Assets/MyAWSCredentials.asset* \ No newline at end of file From fdc98b5ffa985ae7d745f7146022a8b53166357a Mon Sep 17 00:00:00 2001 From: Juris S Date: Thu, 13 Jun 2024 21:15:46 +0100 Subject: [PATCH 2/2] Fixing incorrect `delayCall` callback registrations In recent Unity changes to the Scene view shortcuts, they register a method to this callback to set up the contexts of navigation shortcuts (such as WASD movement). Incorrect registrations in the code-base essentially break any form of movement in Scene view. (See: UUM-73924) --- .../ReorderableInspector/Editor/ReorderableArrayInspector.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/UXF/Scripts/Etc/ReorderableInspector/Editor/ReorderableArrayInspector.cs b/Assets/UXF/Scripts/Etc/ReorderableInspector/Editor/ReorderableArrayInspector.cs index 7f15b102..fac3c7ff 100644 --- a/Assets/UXF/Scripts/Etc/ReorderableInspector/Editor/ReorderableArrayInspector.cs +++ b/Assets/UXF/Scripts/Etc/ReorderableInspector/Editor/ReorderableArrayInspector.cs @@ -62,7 +62,7 @@ private static void HandleScriptReload() { FORCE_INIT = true; - EditorApplication.delayCall = () => { EditorApplication.delayCall = () => { FORCE_INIT = false; }; }; + EditorApplication.delayCall += () => { EditorApplication.delayCall += () => { FORCE_INIT = false; }; }; } private static GUIStyle styleHighlight;