Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Packages/com.unity.inputsystem/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ however, it has to be formatted properly to pass verification tests.
### Fixed
- Fixed an issue where the prompt to enable the InputSystem backends would interrupt the import of large assets.
- Fixed Cut Mode for Action Maps and Actions to make renaming disabled. [ISXB-1155](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-1155)

- Fixed an issue where compiling Addressables with Input System package present would result in failed compilation due to `IInputAnalytic.TryGatherData` not being defined [ISXB-1203](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-1203).

## [1.12.0] - 2025-01-15

Expand Down
4 changes: 2 additions & 2 deletions Packages/com.unity.inputsystem/InputSystem/InputAnalytics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ public interface IInputAnalytic
{
InputAnalyticInfo info { get; } // May be removed when only supporting 2023.2+ versions

#if !UNITY_2023_2_OR_NEWER
#if !UNITY_EDITOR || !UNITY_2023_2_OR_NEWER
// Conditionally mimic UnityEngine.Analytics.IAnalytic
bool TryGatherData(out IInputAnalyticData data, out Exception error);
#endif // !UNITY_2023_2_OR_NEWER
#endif // !UNITY_EDITOR || !UNITY_2023_2_OR_NEWER
}

public static void Initialize(InputManager manager)
Expand Down