We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff61a76 commit 77b3fe9Copy full SHA for 77b3fe9
Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/InputActionsEditorWindow.cs
@@ -282,7 +282,12 @@ private bool HasContentChanged()
282
{
283
var editedAsset = GetEditedAsset();
284
var editedAssetJson = InputActionsEditorWindowUtils.ToJsonWithoutName(editedAsset);
285
- return editedAssetJson != m_AssetJson;
+ var hasContentChanged = editedAssetJson != m_AssetJson;
286
+ if (hasContentChanged)
287
+ {
288
+ Debug.LogError("Content Changed");
289
+ }
290
+ return hasContentChanged;
291
}
292
293
private void DirtyInputActionsEditorWindow(InputActionsEditorState newState)
0 commit comments