Skip to content
Merged
Show file tree
Hide file tree
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
Jan 12, 2023
c6da50d
wip
Mar 15, 2023
9ee7492
wip
Mar 20, 2023
622d6de
wip
Mar 20, 2023
96ce804
wip
Mar 22, 2023
0bf9bc2
wip
Mar 22, 2023
09295ea
wip
Mar 22, 2023
ee1978a
sorting of events and filtering of pointer events
Mar 28, 2023
19e79e2
pointer indices
Mar 28, 2023
404840c
more robust scroll events
Mar 28, 2023
dde508e
forgot to reset state flags
Mar 29, 2023
cebfb54
trying out to use touchscreen for finger index
Mar 29, 2023
a949f6b
removing leftovers
Mar 29, 2023
d26e458
Add dispatch of navigation events for InputForUI (#1667)
jfreire-unity Apr 5, 2023
9ad5c78
InputForUI: Add repetition for Next/Previous navigation events (#1670)
jfreire-unity Apr 20, 2023
32cbfc8
Set seenTouchEvents and seenTouchEvents for missing control paths and…
jfreire-unity Apr 20, 2023
1ab3c35
fix compilation errors when opening InputSystem project
jamesmcgill Apr 27, 2023
df24be7
fix compilation errors when opening project in older editors
jamesmcgill Apr 27, 2023
d7dd239
Bootstrap InputForUI provider only if enabled in the PlayerSettings (…
jamesmcgill Apr 29, 2023
e7e81f0
Fix null reference errors by not initializing InputForUI in the edito…
jamesmcgill Apr 29, 2023
1441c5f
Fix to avoid PointerEvents from Mouse when using Touch
jfreire-unity May 8, 2023
3f57bc3
Reverse bool logic of resetSeenEventsOnUpdate
jfreire-unity May 9, 2023
73d6dd1
Remove debug logs
jfreire-unity May 9, 2023
f29e0a9
Fix PointerEvents with same pointerIndex for all fingers
jfreire-unity May 15, 2023
04323d7
fix InputForUI not being bootstrapped in IL2CPP builds (ISX-1424)
jamesmcgill May 16, 2023
21e3fff
fix for deprecated warning
jamesmcgill May 17, 2023
a5a7230
fix for unused variable warning
jamesmcgill May 19, 2023
9f4e996
run formatting tool
jamesmcgill May 19, 2023
386d16f
modify naming to conform to coding convention
jamesmcgill May 19, 2023
4d59404
Merge branch 'develop' into dmytro/common-input-api-for-ui
jamesmcgill May 19, 2023
e6c532b
fix for running tests in standalone builds
jamesmcgill May 22, 2023
0ff50f6
Remove commented code and add missing comment
jfreire-unity May 23, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private void OnKeyDownEventForRename(KeyDownEvent e)
return;

FocusOnRenameTextField();
e.PreventDefault();
e.StopPropagation();
Copy link
Collaborator

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 :)

}

private void OnMouseDownEventForRename(MouseDownEvent e)
Expand All @@ -70,7 +70,6 @@ private void OnMouseDownEventForRename(MouseDownEvent e)
return;

FocusOnRenameTextField();

e.StopPropagation();
}

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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]

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading