Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
6c1586c
Add fix for ISXB-1560 warnings issue.
Darren-Kelly-Unity Aug 27, 2025
2efad11
Fix issue with all warning log's being shown when they shouldn't be.
Darren-Kelly-Unity Aug 28, 2025
bcae7e7
Update the changelog.
Darren-Kelly-Unity Aug 28, 2025
0778d3e
Fix incorrect check caused by moving code while refactoring.
Darren-Kelly-Unity Aug 28, 2025
284d736
Remove redundant using.
Darren-Kelly-Unity Aug 28, 2025
56527d6
Add IsNullOrEmpty check as GetAsset can return null.
Darren-Kelly-Unity Aug 28, 2025
e74d53f
Merge branch 'develop' into bugfix/ISXB-1560-inputactionmap-warnings
Darren-Kelly-Unity Aug 28, 2025
8ca84f4
Update code to reflect code reivew changes.
Darren-Kelly-Unity Aug 28, 2025
76f6071
Fix changelog spacing.
Darren-Kelly-Unity Aug 28, 2025
ba8fc29
Add fix to only not show warnings when the UI action map is missing.
Darren-Kelly-Unity Aug 28, 2025
8d7373e
Remove added whitespace.
Darren-Kelly-Unity Aug 28, 2025
4cbf7ec
Add comment to explain the early return when not finding a UI action …
Darren-Kelly-Unity Aug 28, 2025
c4306ad
Add unit tests for testing against warnings that should be shown if a…
Darren-Kelly-Unity Aug 28, 2025
62301af
Change test to have an empty action map in a better way.
Darren-Kelly-Unity Aug 29, 2025
b5ee4ff
Remove redundant using.
Darren-Kelly-Unity Aug 29, 2025
6d0f19d
Fix formatting for InputForUITests.
Darren-Kelly-Unity Sep 1, 2025
765ee06
Merge branch 'develop' into bugfix/ISXB-1560-inputactionmap-warnings
Darren-Kelly-Unity Sep 1, 2025
4a697c3
Merge branch 'develop' into bugfix/ISXB-1560-inputactionmap-warnings
Darren-Kelly-Unity Sep 4, 2025
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
1 change: 1 addition & 0 deletions Packages/com.unity.inputsystem/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ however, it has to be formatted properly to pass verification tests.
### Fixed
- Fixed an issue where using Pen devices on Android tablets would result in double clicks for UI interactions. [ISXB-1456](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-1456)
- Fixed an issue preventing an embedded platform from being released. It adds back some `#defines` to `XRSupport` and `InputDeviceCharacteristics`.
- Fixed a warning not showing the asset name correctly when the input action map parameters for runtime GUI were not setup. [ISXB-1560]

## [1.14.1] - 2025-07-10

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ static InputActionAssetVerifier()
public void Verify(InputActionAsset asset,
ProjectWideActionsAsset.IReportInputActionAssetVerificationErrors reporter)
{
if (asset.FindActionMap("UI", false) == null)
{
return;
}

// Note:
// PWA has initial state check true for "Point" action, DefaultActions do not, does it matter?
//
Expand Down Expand Up @@ -70,7 +75,7 @@ public Context(InputActionAsset asset,
private string GetAssetReference()
{
var path = AssetDatabase.GetAssetPath(asset);
return path ?? asset.name;
return string.IsNullOrEmpty(path) ? asset.name : path;
}

private void ActionMapWarning(string actionMap, string problem)
Expand Down