You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FIX: ISXB-808 scroll wheel event system different than ui builder (#1959)
* Fixed ISXB-766, ISXB-808, ISXB-704, conditional to trunk PR #49932.
* Updated for latest trunk PR changes (5f81a20).
* Reverted fix for ISXB-808 and partly ISXB-766. Kept ISBX-704 fix.
* Added scroll wheel normalization tests for UI and InputForUI.
* Recommended changes from @ekcoh. Added more #if UNITY_6000_0_OR_NEWER.
* Added missing #if UNITY_6000_0_OR_NEWER in InputForUITests
* Added changes to CHANGELOG.md
* Override BaseInputModule.scrollWheelDeltaPerTick to 6 for InputSystem.
* Improved Scroll Wheel Delta UI tooltip text
* Improved API docs for ScrollDeltaBehavior
* fixed bad xml tag
* Replaced UNITY_6000_0_OR_NEWER by asmdef versionDefines >= 6000.0.9
* Added InputSystemUIInputModule.scrollDeltaPerTick for more flexibility.
* Fixed missed #if replacement in UITests.
* formatting
* Fixed UNITY_INPUT_SYSTEM_INPUT_MODULE_SCROLL_DELTA unity version in asmdef.
* Added changelog entry for new InputSystemUIInputModule.scrollDeltaPerTick.
* Added changelog entry for ISXB-766 fix.
* Added safety against division by 0 for scrollDeltaPerTick. Added test.
* formatting
* Recommended change from @Joao-Freire. Adjust minimal delta per tick.
* Fixed compile error in InputSystemProvider when not on >= 6000.0.11f1.
* Improved docs for scrollDeltaPerTick
* fixed typo
* formatting
* Moved fixes in changelog to match [Unreleased] tag
* Bump version to 1.10.0
* Fixed Editor_HelpUrlsPointToCurrentVersion
---------
Co-authored-by: Ben Pitt <benp@unity3d.com>
Copy file name to clipboardExpand all lines: Packages/com.unity.inputsystem/CHANGELOG.md
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,12 @@ however, it has to be formatted properly to pass verification tests.
10
10
11
11
## [Unreleased] - yyyy-mm-dd
12
12
13
+
### Fixed
14
+
- Fixed default scroll speed in uGUI being slower than before. [ISXB-766](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-766)
15
+
16
+
### Added
17
+
- Added `InputSystemUIInputModule.scrollDeltaPerTick` property, a customizable multiplicative factor applied to the scroll wheel speed before it is sent to UI components. Note that this has no effect on UI Toolkit content, only uGUI.
18
+
13
19
## [1.9.0] - 2024-07-15
14
20
15
21
### Changed
@@ -40,16 +46,13 @@ however, it has to be formatted properly to pass verification tests.
40
46
- Fixed deletion of last composite part raising an exception. [ISXB-804](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-804)
41
47
- Fixed an issue related to Visualizers sample where exceptions would be thrown by InputActionVisualizer and InputControlVisualizer when entering play-mode if added as components to a new `GameObject`.
42
48
- Fixed an issue with InputAction Asset editor where invalid ControlScheme names with only spaces could be entered. [ISXB-547](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-547).
49
+
- Fixed deletion of last composite part raising an exception. [ISXB-804](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-804)
43
50
44
51
### Added
45
52
- Added additional device information when logging the error due to exceeding the maximum number of events processed
46
53
set by `InputSystem.settings.maxEventsBytesPerUpdate`. This additional information is available in development builds
47
54
only.
48
-
- Fixed deletion of last composite part raising an exception. [ISXB-804](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-804)
49
55
- Expanded editor and build insight analytics to cover ``.inputactions` asset editor usage, `InputSettings` and common component configurations.
50
-
51
-
### Changed
52
-
- Changed `DualSenseHIDInputReport` from internal to public visibility
53
56
- Added Input Setting option allowing to keep platform-specific scroll wheel input values instead of automatically converting them to a normalized range.
0 commit comments