Skip to content

Commit 913f179

Browse files
committed
Add changelog entry, fix compile error for 2019.4.
1 parent 34b1e88 commit 913f179

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Packages/com.unity.inputsystem/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ however, it has to be formatted properly to pass verification tests.
3030
- Added back the InputManager to InputSystem project-wide asset migration code with performance improvement (ISX-2086).
3131
- Changed `OnScreenControl` to automaticaly switch, in Single Player with autoswitch enabled, to the target device control scheme when the first component is enabled to prevent bad interactions when it start.
3232

33+
### Added
34+
- Added ProfilerMakers to `InputAction.Enable()` and `InputActionMap.ResolveBindings()` to enable gathering of profiling data.
35+
3336
## [1.11.2] - 2024-10-16
3437

3538
### Fixed

Packages/com.unity.inputsystem/InputSystem/Actions/InputActionMap.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ public event Action<InputAction.CallbackContext> actionTriggered
317317
/// <summary>
318318
/// ProfilerMarker to measure how long it takes to resolve bindings.
319319
/// </summary>
320-
static readonly ProfilerMarker k_ResolveBindingsProfilerMarker = new("InputActionMap.ResolveBindings");
320+
static readonly ProfilerMarker k_ResolveBindingsProfilerMarker = new ProfilerMarker("InputActionMap.ResolveBindings");
321321

322322
/// <summary>
323323
/// Construct an action map with default values.

0 commit comments

Comments
 (0)