Skip to content

Commit fb158e1

Browse files
committed
Add changelog entry, fix compile error for 2019.4.
1 parent 74df3ca commit fb158e1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Packages/com.unity.inputsystem/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ however, it has to be formatted properly to pass verification tests.
4242

4343
### Added
4444
- Added new API `InputSystem.settings.useIMGUIEditorForAssets` that should be used in custom `InputParameterEditor` that use both IMGUI and UI Toolkit.
45+
- Added ProfilerMakers to `InputAction.Enable()` and `InputActionMap.ResolveBindings()` to enable gathering of profiling data.
4546

4647
## [1.11.2] - 2024-10-16
4748

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)