File tree Expand file tree Collapse file tree 1 file changed +19
-17
lines changed
Assets/MixedRealityToolkit/Interfaces/InputSystem Expand file tree Collapse file tree 1 file changed +19
-17
lines changed Original file line number Diff line number Diff line change 11// Copyright (c) Microsoft Corporation. All rights reserved.
22// Licensed under the MIT License. See LICENSE in the project root for license information.
33
4- using Microsoft . MixedReality . Toolkit . Input ;
54using System ;
65
7- /// <summary>
8- /// Interface defining a mouse input device manager.
9- /// </summary>
10- public interface IMixedRealityMouseDeviceManager : IMixedRealityInputDeviceManager
6+ namespace Microsoft . MixedReality . Toolkit . Input
117{
128 /// <summary>
13- /// Typed representation of the ConfigurationProfile property .
9+ /// Interface defining a mouse input device manager .
1410 /// </summary>
15- [ ObsoleteAttribute ( "The MouseInputProfile property has been deprecated and will be removed in a future version of MRTK." ) ]
16- MixedRealityMouseInputProfile MouseInputProfile { get ; }
17-
18- /// <summary>
19- /// Gets or sets a multiplier value used to adjust the speed of the mouse cursor.
20- /// </summary>
21- float CursorSpeed { get ; set ; }
11+ public interface IMixedRealityMouseDeviceManager : IMixedRealityInputDeviceManager
12+ {
13+ /// <summary>
14+ /// Typed representation of the ConfigurationProfile property.
15+ /// </summary>
16+ [ ObsoleteAttribute ( "The MouseInputProfile property has been deprecated and will be removed in a future version of MRTK." ) ]
17+ MixedRealityMouseInputProfile MouseInputProfile { get ; }
18+
19+ /// <summary>
20+ /// Gets or sets a multiplier value used to adjust the speed of the mouse cursor.
21+ /// </summary>
22+ float CursorSpeed { get ; set ; }
2223
23- /// <summary>
24- /// Gets or sets a multiplier value used to adjust the speed of the mouse wheel.
25- /// </summary>
26- float WheelSpeed { get ; set ; }
24+ /// <summary>
25+ /// Gets or sets a multiplier value used to adjust the speed of the mouse wheel.
26+ /// </summary>
27+ float WheelSpeed { get ; set ; }
28+ }
2729}
You can’t perform that action at this time.
0 commit comments