-
Notifications
You must be signed in to change notification settings - Fork 330
NEW: Add InputSystemProvider for InputForUI #1679
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
2f1498d
Adding dependency to a provider package
c6da50d
wip
9ee7492
wip
622d6de
wip
96ce804
wip
0bf9bc2
wip
09295ea
wip
ee1978a
sorting of events and filtering of pointer events
19e79e2
pointer indices
404840c
more robust scroll events
dde508e
forgot to reset state flags
cebfb54
trying out to use touchscreen for finger index
a949f6b
removing leftovers
d26e458
Add dispatch of navigation events for InputForUI (#1667)
jfreire-unity 9ad5c78
InputForUI: Add repetition for Next/Previous navigation events (#1670)
jfreire-unity 32cbfc8
Set seenTouchEvents and seenTouchEvents for missing control paths and…
jfreire-unity 1ab3c35
fix compilation errors when opening InputSystem project
jamesmcgill df24be7
fix compilation errors when opening project in older editors
jamesmcgill d7dd239
Bootstrap InputForUI provider only if enabled in the PlayerSettings (…
jamesmcgill e7e81f0
Fix null reference errors by not initializing InputForUI in the edito…
jamesmcgill 1441c5f
Fix to avoid PointerEvents from Mouse when using Touch
jfreire-unity 3f57bc3
Reverse bool logic of resetSeenEventsOnUpdate
jfreire-unity 73d6dd1
Remove debug logs
jfreire-unity f29e0a9
Fix PointerEvents with same pointerIndex for all fingers
jfreire-unity 04323d7
fix InputForUI not being bootstrapped in IL2CPP builds (ISX-1424)
jamesmcgill 21e3fff
fix for deprecated warning
jamesmcgill a5a7230
fix for unused variable warning
jamesmcgill 9f4e996
run formatting tool
jamesmcgill 386d16f
modify naming to conform to coding convention
jamesmcgill 4d59404
Merge branch 'develop' into dmytro/common-input-api-for-ui
jamesmcgill e6c532b
fix for running tests in standalone builds
jamesmcgill 0ff50f6
Remove commented code and add missing comment
jfreire-unity File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
Packages/com.unity.inputsystem/InputSystem/Plugins/InputForUI.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
Packages/com.unity.inputsystem/InputSystem/Plugins/InputForUI/AssemblyInfo.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| using System.Runtime.CompilerServices; | ||
| using UnityEngine.Scripting; | ||
|
|
||
| [assembly: InternalsVisibleTo("UnityEngine.InputForUIVisualizer")] | ||
| [assembly: AlwaysLinkAssembly] |
11 changes: 11 additions & 0 deletions
11
Packages/com.unity.inputsystem/InputSystem/Plugins/InputForUI/AssemblyInfo.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
Packages/com.unity.inputsystem/InputSystem/Plugins/InputForUI/InputSystemForUI.asmdef
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| { | ||
| "name": "Unity.InputSystem.ForUI", | ||
| "references": [ | ||
| "Unity.InputSystem" | ||
| ], | ||
| "includePlatforms": [], | ||
| "excludePlatforms": [], | ||
| "allowUnsafeCode": false, | ||
| "overrideReferences": false, | ||
| "precompiledReferences": [], | ||
| "autoReferenced": true, | ||
| "defineConstraints": [], | ||
| "versionDefines": [], | ||
| "noEngineReferences": false | ||
| } |
7 changes: 7 additions & 0 deletions
7
Packages/com.unity.inputsystem/InputSystem/Plugins/InputForUI/InputSystemForUI.asmdef.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good to see this warning fix :)